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

Unified Diff: LayoutTests/fast/html/details-summary-document-child.html

Issue 375293002: Node.insertBefore and Node.appendChild do not use custom binding anymore (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Replace assert with condition Created 6 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/html/details-summary-document-child.html
diff --git a/LayoutTests/fast/html/details-summary-document-child.html b/LayoutTests/fast/html/details-summary-document-child.html
index df9213888da1c947fcd9e7fbfc060f120dd43b54..243ad6c2cc8661511e11ba90e4b60192cae27124 100644
--- a/LayoutTests/fast/html/details-summary-document-child.html
+++ b/LayoutTests/fast/html/details-summary-document-child.html
@@ -6,7 +6,7 @@ if (window.testRunner)
function test() {
document.open();
- document.insertBefore(document.createElement("summary"));
+ document.insertBefore(document.createElement("summary"), null);
// The document don't have <body> so we need use console.log()
// to make readable expectation.
console.log("PASS unless crash");

Powered by Google App Engine
This is Rietveld 408576698