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

Unified Diff: LayoutTests/fast/dom/custom/lifecycle-created-paste.html

Issue 18258003: Pow __proto__, sock :unresolved, and clunk the created callback at once. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Try to be nicer to MSVC. Created 7 years, 5 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/dom/custom/lifecycle-created-paste.html
diff --git a/LayoutTests/fast/dom/custom/lifecycle-created-paste.html b/LayoutTests/fast/dom/custom/lifecycle-created-paste.html
index 95eea472e1964b3eabfe90b787fc25e11aa39699..2e0e83b0cadc97cd9024429a23bb4438398b60bb 100644
--- a/LayoutTests/fast/dom/custom/lifecycle-created-paste.html
+++ b/LayoutTests/fast/dom/custom/lifecycle-created-paste.html
@@ -17,10 +17,10 @@ var selection = window.getSelection();
selection.selectAllChildren(container);
document.execCommand("Copy");
-shouldBe("window.callbacksCalled", "['X-FOO', 'DIV']");
+shouldBe("window.callbacksCalled", "['DIV', 'X-FOO']");
selection.collapseToEnd();
document.execCommand("Paste");
-shouldBe("window.callbacksCalled", "['X-FOO', 'DIV', 'X-FOO', 'DIV']");
+shouldBe("window.callbacksCalled", "['DIV', 'X-FOO', 'DIV', 'X-FOO']");
container.style.display = "none";
</script>

Powered by Google App Engine
This is Rietveld 408576698