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

Unified Diff: LayoutTests/fast/dom/HTMLAnchorElement/anchor-nodownload-set.html

Issue 130193003: Make the second argument to Element.setAttribute non-optional (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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/HTMLAnchorElement/anchor-nodownload-set.html
diff --git a/LayoutTests/fast/dom/HTMLAnchorElement/anchor-nodownload-set.html b/LayoutTests/fast/dom/HTMLAnchorElement/anchor-nodownload-set.html
index 3a34926c2e59354b45cee14989855aebfa7d8487..dd561e796188f0f41a77d0a079fdc7083e274003 100644
--- a/LayoutTests/fast/dom/HTMLAnchorElement/anchor-nodownload-set.html
+++ b/LayoutTests/fast/dom/HTMLAnchorElement/anchor-nodownload-set.html
@@ -28,7 +28,7 @@ function runTest()
var blob = new Blob([string], {type: "text/html"});
var link = document.getElementById("blob-url");
link.href = window.URL.createObjectURL(blob);
- link.setAttribute('download');
+ link.setAttribute('download', '');
click(link);
}
runTest();
« no previous file with comments | « LayoutTests/fast/dom/Element/missing-arguments-expected.txt ('k') | LayoutTests/fast/forms/input-type-change-focusout.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698