Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / loading / nested_bad_objects.php
blob19bc0b59201a7095f3d3760e0da52f31cd4bb714
1 <?
2 if (isset($_GET['object'])) {
3 header("Content-Type: nothing/bad-type");
4 exit();
6 ?>
7 <html>
8 <script>
9 if (window.testRunner)
10 testRunner.dumpAsText();
11 window.onload = function() {
12 internals.updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks();
14 </script>
15 <object type="image/jpeg" data="nested_bad_objects.php?object">
16 <object type="image/jpeg" data="nested_bad_objects.php?object" />
17 </object>
18 PASS - nested image objects with bad mimetype do not cause a crash.
19 </html>