OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../../resources/js-test.js"></script> | 4 <script src="../../resources/js-test.js"></script> |
5 <script> | 5 <script> |
6 window.jsTestIsAsync = true; | 6 window.jsTestIsAsync = true; |
7 if (window.testRunner) { | 7 if (window.testRunner) { |
8 testRunner.dumpAsText(); | 8 testRunner.dumpAsText(); |
9 testRunner.dumpResourceRequestCallbacks(); | 9 testRunner.dumpResourceRequestCallbacks(); |
10 } else { | 10 } else { |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 { | 43 { |
44 background-image:url("../images/resources/lenna.png"); | 44 background-image:url("../images/resources/lenna.png"); |
45 } | 45 } |
46 body | 46 body |
47 { | 47 { |
48 cursor:url("../events/resources/greenbox-hotspot35-4.cur"), pointer; | 48 cursor:url("../events/resources/greenbox-hotspot35-4.cur"), pointer; |
49 } | 49 } |
50 @font-face | 50 @font-face |
51 { | 51 { |
52 font-family: custom_font; | 52 font-family: custom_font; |
53 src: url("../text/resources/gw432047.ttf"); | 53 src: url("../../resources/Ahem.ttf"); |
54 } | 54 } |
55 p | 55 p |
56 { | 56 { |
57 font-family: custom_font; | 57 font-family: custom_font; |
58 } | 58 } |
59 </style> | 59 </style> |
60 </head> | 60 </head> |
61 <body onload="requestMoreResources()"> | 61 <body onload="requestMoreResources()"> |
62 <div id="with-background"> | 62 <div id="with-background"> |
63 <p> | 63 <p> |
64 This test checks that the correct callbacks for resource requests are | 64 This test checks that the correct callbacks for resource requests are |
65 invoked. It passes if you see the callbacks for 11 resources. | 65 invoked. It passes if you see the callbacks for 11 resources. |
66 </p> | 66 </p> |
67 </div> | 67 </div> |
68 <div id="images"> | 68 <div id="images"> |
69 <img id="img-normal" src="../images/resources/dice.png" /> | 69 <img id="img-normal" src="../images/resources/dice.png" /> |
70 <img id="img-changing" src="../images/resources/dice.png" /> | 70 <img id="img-changing" src="../images/resources/dice.png" /> |
71 <img id="img-fail" /> | 71 <img id="img-fail" /> |
72 <img id="img-not-there" src="not-existing.png" /> | 72 <img id="img-not-there" src="not-existing.png" /> |
73 </div> | 73 </div> |
74 <div id="more-images"> | 74 <div id="more-images"> |
75 </div> | 75 </div> |
76 <div id="console"></div> | 76 <div id="console"></div> |
77 </body> | 77 </body> |
78 </html> | 78 </html> |
OLD | NEW |