Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / misc / image-error.html
blobb4495869de640913e6d0641222f368b90bbd6c43
1 <script>
2 if (window.testRunner) {
3 testRunner.waitUntilDone();
6 function finished()
8 if (window.testRunner)
9 testRunner.notifyDone();
11 </script>
12 <div id="target">
13 This test is making sure that even though the image returns a 404, it still gets loaded and displayed. This is done for legacy compat reasons,
14 and is the opposite of how the object element behaves.<br>
15 <img id="result" src="resources/404image.php" onload="finished()" onerror="finished()">
16 </div>
17 <div id="console"></div>