| Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/Document-contentType/contentType/contenttype_png.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/Document-contentType/contentType/contenttype_png.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/Document-contentType/contentType/contenttype_png.html
|
| index aac4172ef9987454c49ff037dcdc3c69f9a4a891..73812c019031fdffb63e113ae83a82e259ac4172 100644
|
| --- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/Document-contentType/contentType/contenttype_png.html
|
| +++ b/third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/Document-contentType/contentType/contenttype_png.html
|
| @@ -3,13 +3,13 @@
|
| <script src="../../../../../../resources/testharness.js"></script>
|
| <script src="../../../../../../resources/testharnessreport.js"></script>
|
| <div id=log></div>
|
| +<iframe style="display:none"></iframe>
|
| <script>
|
| async_test(function() {
|
| - var iframe = document.createElement('iframe');
|
| + var iframe = document.getElementsByTagName('iframe')[0];
|
| iframe.addEventListener('load', this.step_func_done(function() {
|
| assert_equals(iframe.contentDocument.contentType, "image/png");
|
| }), false);
|
| iframe.src = "../resources/t.png";
|
| - document.body.appendChild(iframe);
|
| });
|
| </script>
|
|
|