Index: LayoutTests/webarchive/adopt-attribute-styled-node-webarchive-expected.webarchive |
diff --git a/LayoutTests/webarchive/adopt-attribute-styled-node-webarchive-expected.webarchive b/LayoutTests/webarchive/adopt-attribute-styled-node-webarchive-expected.webarchive |
deleted file mode 100644 |
index 63845c8211fac13bc46d8cc6d3adfa245b4ffd5c..0000000000000000000000000000000000000000 |
--- a/LayoutTests/webarchive/adopt-attribute-styled-node-webarchive-expected.webarchive |
+++ /dev/null |
@@ -1,85 +0,0 @@ |
-<?xml version="1.0" encoding="UTF-8"?> |
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
-<plist version="1.0"> |
-<dict> |
- <key>WebMainResource</key> |
- <dict> |
- <key>WebResourceData</key> |
- <string><html><head> |
- |
-<script> |
- |
-if (window.testRunner) { |
- testRunner.dumpDOMAsWebArchive(); |
- testRunner.setCanOpenWindows(); |
- testRunner.waitUntilDone(); |
-} |
- |
-var otherWindow = null; |
- |
-function startTest() |
-{ |
- otherWindow = window.open("resources/adopt-attribute-styled-node-second-window.html", "TestWindow"); |
- if (!otherWindow) { |
- alert("When running this test under Safari, popup blocking must be disabled."); |
- return; |
- } |
- tryAdoptNode(); |
-} |
- |
-function tryAdoptNode() |
-{ |
- var otherMarquee = otherWindow.document.getElementById("otherMarquee"); |
- if (!otherMarquee) { |
- setTimeout("tryAdoptNode()", 10); |
- return; |
- } |
- |
- var adoptedMarquee = document.adoptNode(otherMarquee); |
- document.getElementById("testSpan").appendChild(adoptedMarquee); |
- otherWindow.close(); |
- |
- procedeAfterClosedWindow(); |
-} |
- |
-function procedeAfterClosedWindow() |
-{ |
- if (!otherWindow.closed) { |
- setTimeout("procedeAfterClosedWindow()", 10); |
- return; |
- } |
- |
- otherWindow = null; |
- |
- if (window.GCController) { |
- GCController.collect(); |
- if (window.testRunner) |
- testRunner.notifyDone(); |
- else |
- alert("How strange - You have window.GCController, but no window.testRunner. How did this happen?"); |
- } |
- else |
- alert("Now wait for garbage collection to have occured, then save the current page as a WebArchive."); |
-} |
- |
-</script> |
-</head> |
- |
-<body onload="startTest();"> |
-<span id="testSpan">This test takes a node with mapped style attributes from a different document, moves it to this document, makes sure the other document has closed, |
-then makes a WebArchive from this document. The test passes if it doesn't crash. If running the test in Safari then garbage collection might get in the |
-way of fulling testing the bug. One should wait "awhile" before making the WebArchive.<br><marquee id="otherMarquee" bgcolor="blue" width="300px">Hello there marquee!</marquee></span> |
- |
- |
-</body></html></string> |
- <key>WebResourceFrameName</key> |
- <string></string> |
- <key>WebResourceMIMEType</key> |
- <string>text/html</string> |
- <key>WebResourceTextEncodingName</key> |
- <string>UTF-8</string> |
- <key>WebResourceURL</key> |
- <string>file:///LayoutTests/webarchive/adopt-attribute-styled-node-webarchive.html</string> |
- </dict> |
-</dict> |
-</plist> |