aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dojo/tests/_base/html_quirks.html
blob: ddc7825ffb364799b36da85de5200ced5d05668a (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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
<html>
	<!--
		we use a quirks-mode DTD on purpose to ensure that things go tilt. Wheee!!
	-->
	<head>
		<title>testing Core HTML/DOM/CSS/Style utils in quirks mode</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");
			dojo.addOnLoad(function(){
				doh.register("t", 
					[
						"t.is(100, dojo.marginBox('sq100').w);",
						"t.is(100, dojo.marginBox('sq100').h);",

						"t.is(120, dojo.marginBox('sq100margin10').w);",
						"t.is(120, dojo.marginBox('sq100margin10').h);",
						"t.is(100, dojo.contentBox('sq100margin10').w);",
						"t.is(100, dojo.contentBox('sq100margin10').h);",

						// FIXME: the 'correct' w is not 100 on Safari WebKit (2.0.4 [419.3]), the right-margin extends to the document edge
						//"t.is(100, dojo.marginBox('sq100nopos').w);",
						"t.is(100, dojo.marginBox('sq100nopos').h);",

						function coordsBasic(t){
							var pos = dojo.coords("sq100", false);
							// console.debug(pos);
							t.is(100, pos.x);
							t.is(100, pos.y);
							t.is(100, pos.w);
							t.is(100, pos.h);
						},
						function coordsMargin(t){
							// coords is getting us the margin-box location, is
							// this right?
							var pos = dojo.coords("sq100margin10", false);
							t.is(260, pos.x);
							t.is(110, pos.y);
							t.is(120, pos.w);
							t.is(120, pos.h);
						},
						function coordsBorder(t){
							var pos = dojo.coords("sq100border10", false);
							t.is(100, pos.x);
							t.is(400, pos.y);
						},
						function sq100nopos(t){
							var pos = dojo.coords("sq100nopos", false);
							// console.debug(pos);
							t.is(0, pos.x);
							t.t(pos.y > 0);
							// FIXME: the 'correct' w is not 100 on Safari WebKit (2.0.4 [419.3]), the right-margin extends to the document edge
							//t.is(100, pos.w);
							t.is(100, pos.h);
						}
					]
				);
				if(dojo.isIE){ 
					// IE collapses padding in quirks mode. We just report on it.
					doh.register("t", 
						[
							"t.is(120, dojo.marginBox('sq100margin10pad10').w);",
							"t.is(120, dojo.marginBox('sq100margin10pad10').h);",

							"t.is(100, dojo.marginBox('sq100pad10').w);",
							"t.is(100, dojo.marginBox('sq100pad10').h);",

							"t.is(100, dojo.marginBox('sq100ltpad10').w);",
							"t.is(100, dojo.marginBox('sq100ltpad10').h);",
							"t.is(90, dojo.contentBox('sq100ltpad10').w);",
							"t.is(90, dojo.contentBox('sq100ltpad10').h);",

							"t.is(110, dojo.marginBox('sq100ltpad10rbmargin10').w);",
							"t.is(110, dojo.marginBox('sq100ltpad10rbmargin10').h);",

							"t.is(100, dojo.marginBox('sq100border10').w);",
							"t.is(100, dojo.marginBox('sq100border10').h);",
							"t.is(80, dojo.contentBox('sq100border10').w);",
							"t.is(80, dojo.contentBox('sq100border10').h);",

							"t.is(120, dojo.marginBox('sq100border10margin10').w);",
							"t.is(120, dojo.marginBox('sq100border10margin10').h);",
							"t.is(80, dojo.contentBox('sq100border10margin10').w);",
							"t.is(80, dojo.contentBox('sq100border10margin10').h);",

							"t.is(120, dojo.marginBox('sq100border10margin10pad10').w);",
							"t.is(120, dojo.marginBox('sq100border10margin10pad10').h);",
							"t.is(60, dojo.contentBox('sq100border10margin10pad10').w);",
							"t.is(60, dojo.contentBox('sq100border10margin10pad10').h);"
						]
					);
				}else{
					doh.register("t", 
						[
							"t.is(140, dojo.marginBox('sq100margin10pad10').w);",
							"t.is(140, dojo.marginBox('sq100margin10pad10').h);",

							"t.is(120, dojo.marginBox('sq100pad10').w);",
							"t.is(120, dojo.marginBox('sq100pad10').h);",

							"t.is(110, dojo.marginBox('sq100ltpad10').w);",
							"t.is(110, dojo.marginBox('sq100ltpad10').h);",
							"t.is(100, dojo.contentBox('sq100ltpad10').w);",
							"t.is(100, dojo.contentBox('sq100ltpad10').h);",

							"t.is(120, dojo.marginBox('sq100ltpad10rbmargin10').w);",
							"t.is(120, dojo.marginBox('sq100ltpad10rbmargin10').h);",

							"t.is(120, dojo.marginBox('sq100border10').w);",
							"t.is(120, dojo.marginBox('sq100border10').h);",
							"t.is(100, dojo.contentBox('sq100border10').w);",
							"t.is(100, dojo.contentBox('sq100border10').h);",

							"t.is(140, dojo.marginBox('sq100border10margin10').w);",
							"t.is(140, dojo.marginBox('sq100border10margin10').h);",
							"t.is(100, dojo.contentBox('sq100border10margin10').w);",
							"t.is(100, dojo.contentBox('sq100border10margin10').h);",

							"t.is(160, dojo.marginBox('sq100border10margin10pad10').w);",
							"t.is(160, dojo.marginBox('sq100border10margin10pad10').h);",
							"t.is(100, dojo.contentBox('sq100border10margin10pad10').w);",
							"t.is(100, dojo.contentBox('sq100border10margin10pad10').h);"
						]
					);
				}

				doh.run();
			});
		</script>
		<style type="text/css">
			html, body {
				padding: 0px;
				margin: 0px;
				border: 0px;
			}

			#sq100 {
				background-color: black;
				color: white;
				position: absolute;
				left: 100px;
				top: 100px;
				width: 100px;
				height: 100px;
				border: 0px;
				padding: 0px;
				margin: 0px;
				overflow: hidden;
			}

			#sq100margin10 {
				background-color: black;
				color: white;
				position: absolute;
				left: 250px;
				top: 100px;
				width: 100px;
				height: 100px;
				border: 0px;
				padding: 0px;
				margin: 10px;
				overflow: hidden;
			}

			#sq100margin10pad10 {
				background-color: black;
				color: white;
				position: absolute;
				left: 400px;
				top: 100px;
				width: 100px;
				height: 100px;
				border: 0px;
				padding: 10px;
				margin: 10px;
				overflow: hidden;
			}

			#sq100pad10 {
				background-color: black;
				color: white;
				position: absolute;
				left: 100px;
				top: 250px;
				width: 100px;
				height: 100px;
				border: 0px;
				padding: 10px;
				margin: 0px;
				overflow: hidden;
			}

			#sq100ltpad10 {
				background-color: black;
				color: white;
				position: absolute;
				left: 250px;
				top: 250px;
				width: 100px;
				height: 100px;
				border: 0px;
				padding-left: 10px;
				padding-top: 10px;
				padding-right: 0px;
				padding-bottom: 0px;
				margin: 0px;
				overflow: hidden;
			}

			#sq100ltpad10rbmargin10 {
				background-color: black;
				color: white;
				position: absolute;
				left: 400px;
				top: 250px;
				width: 100px;
				height: 100px;
				border: 0px;
				padding-left: 10px;
				padding-top: 10px;
				padding-right: 0px;
				padding-bottom: 0px;
				margin-left: 0px;
				margin-top: 0px;
				margin-right: 10px;
				margin-bottom: 10px;
				overflow: hidden;
			}

			#sq100border10 {
				background-color: black;
				color: white;
				position: absolute;
				left: 100px;
				top: 400px;
				width: 100px;
				height: 100px;
				border: 10px solid yellow;
				padding: 0px;
				margin: 0px;
				overflow: hidden;
			}

			#sq100border10margin10 {
				background-color: black;
				color: white;
				position: absolute;
				left: 250px;
				top: 400px;
				width: 100px;
				height: 100px;
				border: 10px solid yellow;
				padding: 0px;
				margin: 10px;
				overflow: hidden;
			}

			#sq100border10margin10pad10 {
				background-color: black;
				color: white;
				position: absolute;
				left: 400px;
				top: 400px;
				width: 100px;
				height: 100px;
				border: 10px solid yellow;
				padding: 10px;
				margin: 10px;
				overflow: hidden;
			}

			#sq100nopos {
				background-color: black;
				color: white;
				width: 100px;
				height: 100px;
				padding: 0px;
				margin: 0px;
			}

		</style>
	</head>
	<body>
		<h1>testing Core HTML/DOM/CSS/Style utils</h1>
		<div id="sq100">
			100px square, abs
		</div>
		<div id="sq100margin10">
			100px square, abs, 10px margin
		</div>
		<div id="sq100margin10pad10">
			100px square, abs, 10px margin, 10px padding
		</div>
		<div id="sq100pad10">
			100px square, abs, 10px padding
		</div>
		<div id="sq100ltpad10">
			100px square, abs, 10px left and top padding
		</div>
		<div id="sq100ltpad10rbmargin10">
			100px square, abs, 10px left and top padding, 10px bottom and right margin
		</div>
		<div id="sq100border10">
			100px square, abs, 10px yellow border
		</div>
		<div id="sq100border10margin10">
			100px square, abs, 10px yellow border, 10px margin
		</div>
		<div id="sq100border10margin10pad10">
			100px square, abs, 10px yellow border, 10px margin, 10px padding
		</div>
		<div id="sq100nopos">
			100px square, no positioning
		</div>
	</body>
</html>