| Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/Document-contentType/contentType/contenttype_datauri_02.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/Document-contentType/contentType/contenttype_datauri_02.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/Document-contentType/contentType/contenttype_datauri_02.html
|
| deleted file mode 100644
|
| index 19cfbc1f97e97d589d027553452a01542e90d6c5..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/Document-contentType/contentType/contenttype_datauri_02.html
|
| +++ /dev/null
|
| @@ -1,15 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<title>Data URI document.contentType === 'text/html' when data URI MIME type is set</title>
|
| -<script src="../../../../../../resources/testharness.js"></script>
|
| -<script src="../../../../../../resources/testharnessreport.js"></script>
|
| -<div id=log></div>
|
| -<script>
|
| -async_test(function() {
|
| - var iframe = document.createElement('iframe');
|
| - iframe.addEventListener('load', this.step_func_done(function() {
|
| - assert_equals(iframe.contentDocument.contentType, "text/html");
|
| - }), false);
|
| - iframe.src = "data:text/html;charset=utf-8,<!DOCTYPE html>";
|
| - document.body.appendChild(iframe);
|
| -});
|
| -</script>
|
|
|