| Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/script_002.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/script_002.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/script_002.html
|
| deleted file mode 100644
|
| index f9dcceae88d5412701fcfb60e7040a7b00e6406a..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/script_002.html
|
| +++ /dev/null
|
| @@ -1,20 +0,0 @@
|
| -<!doctype html>
|
| -<title>document.write script executed synchronously</title>
|
| -<script src="../../../../../../resources/testharness.js"></script>
|
| -<script src="../../../../../../resources/testharnessreport.js"></script>
|
| -<script>
|
| -var t = async_test();
|
| -var order = [];
|
| -t.step(function() {
|
| - document.write("<script>t.step(function() {order.push(1);});<"+"/script>");
|
| - order.push(2);
|
| -});
|
| -</script>
|
| -<script>
|
| -t.step(function() {
|
| - order.push(3);
|
| - assert_array_equals(order, [1,2,3]);
|
| -})
|
| -t.done();
|
| -</script>
|
| -<div id="log"></div>
|
|
|