Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(237)

Unified Diff: LayoutTests/fast/storage/storage-detached-iframe.html

Issue 1158433004: Remove Attr child nodes (making Attr a Node, not a ContainerNode) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: address feedback Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/storage/storage-detached-iframe.html
diff --git a/LayoutTests/fast/storage/storage-detached-iframe.html b/LayoutTests/fast/storage/storage-detached-iframe.html
index d3031367ff17d5b013714bcdcb7ab62edfc9199a..6e3dbc1d77f5679c65fd1b382cbbc26307f50ed4 100644
--- a/LayoutTests/fast/storage/storage-detached-iframe.html
+++ b/LayoutTests/fast/storage/storage-detached-iframe.html
@@ -9,23 +9,6 @@
}
}
- function runTestReplaceWholeText()
- {
- t1 = openIframe();
- var a = t1.contentWindow.frames;
- var b = t1.contentDocument.defaultView.localStorage;
- t1.outerText = "";
- t1.src = undefined;
- first_attr = t1.attributes.item(undefined, undefined, undefined, undefined);
- first_attr.firstChild.data = undefined;
- first_attr.firstChild.DOCUMENT_FRAGMENT_NODE = a;
- try {
- first_attr.firstChild.DOCUMENT_FRAGMENT_NODE.localStorage.fuzz3_visited="test";
- } catch (e) {
- console.log("Expected exception caught.");
- }
- }
-
function runTestOuterText() {
t1 = openIframe();
var a = t1.contentWindow.frames;
@@ -41,7 +24,6 @@
}
function runTests() {
- runTestReplaceWholeText();
runTestOuterText();
document.getElementById("result").innerHTML = "passed";
}

Powered by Google App Engine
This is Rietveld 408576698