aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dojo/tests/_base/html_box_quirks.html
blob: f87ca4447f2ae80cf5c6650f464293da47f6397b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<!--
	we use a quirks-mode DTD to check for quirks!
-->
<html>
	<head>
		<title> test html.js Box utils</title>
		<style type="text/css">
			/*@import "../../resources/dojo.css";*/
		</style>
		<script type="text/javascript" 
			src="../../dojo.js" 
			djConfig="isDebug: true"></script>
		<script type="text/javascript">
			dojo.require("doh.runner");
			
			var margin = '1px';
			var border = '3px solid black';
			var padding = '5px';
			var defaultStyles = {
				height: '100px',
				width: '100px',
				position: 'absolute',
				backgroundColor: 'red'
			};
			
			var defaultChildStyles = {
				height: '20px',
				width: '20px',
				backgroundColor: 'blue'
			}
			
			var testStyles = [
				{},
				{margin: margin},
				{border: border},
				{padding: padding},
				{margin: margin, border: border},
				{margin: margin, padding: padding},
				{border: border, padding: padding},
				{margin: margin, border: border, padding: padding}			
			]
			
			
			function sameBox(inBox1, inBox2) {
				for (var i in inBox1)
					if (inBox1[i] != inBox2[i]) {
						console.log((arguments[2]||'box1') + '.' + i + ': ', inBox1[i], ' != ', (arguments[3]||'box2') + '.' + i + ': ', inBox2[i]);
						return false;
					}	
				return true;		
			}
			
			function reciprocalMarginBoxTest(inNode, inBox) {
				var s = inBox || dojo.marginBox(inNode);
				dojo.marginBox(inNode, s);
				var e = dojo.marginBox(inNode);
				return sameBox(s, e);
			}
			
			function fitTest(inParent, inChild) {
				var pcb = dojo.contentBox(inParent);
				return reciprocalMarginBoxTest(inChild, pcb);
			}
			
			function createStyledElement(inStyle, inParent, inElement, inNoDefault) {
				inStyle = inStyle||{};
				if (!inNoDefault) {
					for (var i in defaultStyles)
						if (!inStyle[i])
							inStyle[i] = defaultStyles[i];
				}			
				var n = document.createElement(inElement || 'div');
				(inParent||document.body).appendChild(n);
				dojo.mixin(n.style, inStyle);
				return n;				
			}
			
			var _testTopInc = 0;
			var _testTop = 150;
			var _testInitTop = 250;
			function styleIncTop(inStyle) {
				inStyle = dojo.mixin({}, inStyle||{});
				inStyle.top = (_testInitTop + _testTop*_testTopInc) + 'px';
				_testTopInc++;
				return inStyle;
			}
			
			function removeTestNode(inNode) {
				// leave nodes for inspection or don't return to delete them
				return;
				inNode = dojo.byId(inNode);
				inNode.parentNode.removeChild(inNode);
				_testTopInc--;
			}
			
			function testAndCallback(inTest, inAssert, inComment, inOk, inErr) {
				inTest.assertTrue('/* ' + inComment +  '*/' + inAssert);
				if (inAssert)
					inOk&&inOk();
				else
					inErr&&inErr();	
			}
			
			// args are (styles, parent, element name, no default)
			function mixCreateElementArgs(inMix, inArgs) {
				args = [{}];
				if (inArgs&&inArgs[0])
					dojo.mixin(args[0], inArgs[0]);
				if (inMix.length)
					dojo.mixin(args[0], inMix[0]||{});
				// parent comes from source
				if (inMix.length > 1)
					args[1] = inMix[1];
				args[2] = inArgs[2];
				args[3] = inArgs[3]	
				return args;	
			};
			
			function createStyledNodes(inArgs, inFunc) {
				for (var i=0, n; (s=testStyles[i]); i++) {
					n = createStyledElement.apply(this, mixCreateElementArgs([styleIncTop(s)], inArgs));
					inFunc&&inFunc(n);
				}	
			}
			
			function createStyledParentChild(inParentArgs, inChildArgs, inFunc) {
				for (var i=0, s, p, c; (s=testStyles[i]); i++) {
					p = createStyledElement.apply(this, mixCreateElementArgs([styleIncTop(s)], inParentArgs));
					c = createStyledElement.apply(this, mixCreateElementArgs([{}, p], inChildArgs));
					inFunc&&inFunc(p, c);
				}	
			}
			
			function createStyledParentChildren(inParentArgs, inChildArgs, inFunc) {
				for (var i=0, s, p; (s=testStyles[i]); i++)
					for (var j=0, sc, c, props; (sc=testStyles[j]); j++) {
						p = createStyledElement.apply(this, mixCreateElementArgs([styleIncTop(s)], inParentArgs));
						c = createStyledElement.apply(this, mixCreateElementArgs([sc, p], inChildArgs));
						inFunc&&inFunc(p, c);
					}	
				
				for (var i=0, s, p, c; (s=testStyles[i]); i++) {
					p = createStyledElement.apply(this, mixCreateElementArgs([styleIncTop(s)], inParentArgs));
					c = createStyledElement.apply(this, mixCreateElementArgs([{}, p], inChildArgs));
					inFunc&&inFunc(p, c);
				}	
			}
			
			
			function runFitTest(inTest, inParentStyles, inChildStyles) {
				createStyledParentChildren([inParentStyles], [inChildStyles], function(p, c) {
					testAndCallback(inTest, fitTest(p, c), '', function() {removeTestNode(p); });
				});
			}
			
			dojo.addOnLoad(function(){
				doh.register("t", 
					[
						function reciprocalTests(t) {
							createStyledNodes([], function(n) {
								testAndCallback(t, reciprocalMarginBoxTest(n), '', function() {removeTestNode(n); });
							});
						},
						function fitTests(t) {
							runFitTest(t, null, dojo.mixin({}, defaultChildStyles));
						},
						function fitTestsOverflow(t) {
							runFitTest(t, null, dojo.mixin({overflow:'hidden'}, defaultChildStyles));
							runFitTest(t, {overflow: 'hidden'}, dojo.mixin({}, defaultChildStyles));
							runFitTest(t, {overflow: 'hidden'}, dojo.mixin({overflow:'hidden'}, defaultChildStyles));
						},
						function fitTestsFloat(t) {
							runFitTest(t, null, dojo.mixin({float: 'left'}, defaultChildStyles));
							runFitTest(t, {float: 'left'}, dojo.mixin({}, defaultChildStyles));
							runFitTest(t, {float: 'left'}, dojo.mixin({float: 'left'}, defaultChildStyles));
						},
						function reciprocalTestsInline(t) {
							createStyledParentChild([], [{}, null, 'span'], function(p, c) {
								c.innerHTML = 'Hello World';
								testAndCallback(t, reciprocalMarginBoxTest(c), '', function() {removeTestNode(c); });
							});
						},
						function reciprocalTestsButtonChild(t) {
							createStyledParentChild([], [{}, null, 'button'], function(p, c) {
								c.innerHTML = 'Hello World';
								testAndCallback(t, reciprocalMarginBoxTest(c), '', function() {removeTestNode(c); });
							});
						}
					]
				);
				doh.run();
			});
		</script>
		<style type="text/css">
			html, body {
				padding: 0px;
				margin: 0px;
				border: 0px;
			}
		</style>
	</head>
	<body>
	</body>
</html>