OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <link href="resources/grid.css" rel="stylesheet"> | 3 <link href="resources/grid.css" rel="stylesheet"> |
4 <style> | 4 <style> |
5 .grid { | 5 .grid { |
6 grid-template-columns: 50px 100px 200px; | 6 grid-template-columns: 50px 100px 200px; |
7 grid-template-rows: 50px 100px 200px; | 7 grid-template-rows: 50px 100px 200px; |
8 background-color: #aaa; | 8 background-color: #aaa; |
9 } | 9 } |
10 .grid > * { | 10 .grid > * { |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 <textarea data-expected-display="block" data-offset-x="50" data-offset-y
="150">textarea</textarea> | 52 <textarea data-expected-display="block" data-offset-x="50" data-offset-y
="150">textarea</textarea> |
53 <input data-expected-display="block" data-offset-x="50" data-offset-y="1
50" type="checkbox" value="radio"></input> | 53 <input data-expected-display="block" data-offset-x="50" data-offset-y="1
50" type="checkbox" value="radio"></input> |
54 <input data-expected-display="block" data-offset-x="50" data-offset-y="1
50" type="file" value="file"></input> | 54 <input data-expected-display="block" data-offset-x="50" data-offset-y="1
50" type="file" value="file"></input> |
55 <input data-expected-display="block" data-offset-x="50" data-offset-y="1
50" type="image" value="image"></input> | 55 <input data-expected-display="block" data-offset-x="50" data-offset-y="1
50" type="image" value="image"></input> |
56 <input data-expected-display="block" data-offset-x="50" data-offset-y="1
50" type="password" value="image"></input> | 56 <input data-expected-display="block" data-offset-x="50" data-offset-y="1
50" type="password" value="image"></input> |
57 <input data-expected-display="block" data-offset-x="50" data-offset-y="1
50" type="text" value="text"></input> | 57 <input data-expected-display="block" data-offset-x="50" data-offset-y="1
50" type="text" value="text"></input> |
58 | 58 |
59 <img data-expected-display="block" data-offset-x="50" data-offset-y="150
" src="../images/resources/green-256x256.png"></img> | 59 <img data-expected-display="block" data-offset-x="50" data-offset-y="150
" src="../images/resources/green-256x256.png"></img> |
60 <img data-expected-display="block" data-offset-x="50" data-offset-y="150
" src="nonexistent.png"></img> | 60 <img data-expected-display="block" data-offset-x="50" data-offset-y="150
" src="nonexistent.png"></img> |
61 | 61 |
62 <svg data-expected-display="block" data-offset-x="50" data-offset-y="150
"> | 62 <svg data-expected-display="block" data-positioned-offset-x="50" data-po
sitioned-offset-y="150"> |
63 <circle cx="50" cy="50" r="50" fill="blue"> | 63 <circle cx="50" cy="50" r="50" fill="blue"> |
64 </circle> | 64 </circle> |
65 </svg> | 65 </svg> |
66 | 66 |
67 <!-- Spans are common so they should be tested. --> | 67 <!-- Spans are common so they should be tested. --> |
68 <span data-expected-display="block" data-offset-x="50" data-offset-y="15
0"></span> | 68 <span data-expected-display="block" data-offset-x="50" data-offset-y="15
0"></span> |
69 </div> | 69 </div> |
70 </div> | 70 </div> |
71 | 71 |
72 </html> | 72 </html> |
OLD | NEW |