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

Unified Diff: LayoutTests/svg/animations/smil-element-target-crash-main.html

Issue 22875013: Make several DOMImplementation API arguments mandatory (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix createDocument() args Created 7 years, 4 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/svg/animations/smil-element-target-crash-main.html
diff --git a/LayoutTests/svg/animations/smil-element-target-crash-main.html b/LayoutTests/svg/animations/smil-element-target-crash-main.html
index bef7a4ffcd696c4b8921aac25a89dfab880f8d93..661b361a18f77032edaf55e595ee4cc5653103e6 100644
--- a/LayoutTests/svg/animations/smil-element-target-crash-main.html
+++ b/LayoutTests/svg/animations/smil-element-target-crash-main.html
@@ -8,7 +8,7 @@ if (window.testRunner) {
function crash()
{
- var doc = document.implementation.createDocument();
+ var doc = document.implementation.createDocument(null, "");
doc.adoptNode(object1.contentDocument.getElementsByTagName("svg")[0]);
delete doc;
« no previous file with comments | « LayoutTests/fast/forms/change-form-element-document-crash.html ('k') | Source/core/dom/DOMImplementation.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698