OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script> | 3 <script> |
4 if (window.testRunner) { | 4 if (window.testRunner) { |
5 // Note that this test only passes in DRT. In browsers, the cross-iframe dom
inspection usually causes a security exception. | 5 // Note that this test only passes in DRT. In browsers, the cross-iframe dom
inspection usually causes a security exception. |
6 testRunner.dumpAsText(true); | 6 testRunner.dumpAsTextWithPixelResults(); |
7 } | 7 } |
8 | 8 |
9 function log(str) { | 9 function log(str) { |
10 var li = document.createElement("li"); | 10 var li = document.createElement("li"); |
11 li.appendChild(document.createTextNode(str)); | 11 li.appendChild(document.createTextNode(str)); |
12 var console = document.getElementById("console"); | 12 var console = document.getElementById("console"); |
13 console.appendChild(li); | 13 console.appendChild(li); |
14 } | 14 } |
15 | 15 |
16 function imageSize(id) { | 16 function imageSize(id) { |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 <iframe id="img6" src="resources/exif-orientation-6-ru.jpg" frameborder=0></ifra
me> | 50 <iframe id="img6" src="resources/exif-orientation-6-ru.jpg" frameborder=0></ifra
me> |
51 <iframe id="img7" src="resources/exif-orientation-7-rl.jpg" frameborder=0></ifra
me> | 51 <iframe id="img7" src="resources/exif-orientation-7-rl.jpg" frameborder=0></ifra
me> |
52 <iframe id="img8" src="resources/exif-orientation-8-llo.jpg" frameborder=0></ifr
ame> | 52 <iframe id="img8" src="resources/exif-orientation-8-llo.jpg" frameborder=0></ifr
ame> |
53 <br> | 53 <br> |
54 <iframe id="img9" src="resources/exif-orientation-9-u.jpg" frameborder=0></ifram
e> | 54 <iframe id="img9" src="resources/exif-orientation-9-u.jpg" frameborder=0></ifram
e> |
55 <br> | 55 <br> |
56 <ul id="console"></ul> | 56 <ul id="console"></ul> |
57 </body> | 57 </body> |
58 </html> | 58 </html> |
59 | 59 |
OLD | NEW |