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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/document-attribute-js-null.html

Issue 1415503007: Remove [TreatNullAs=NullString] from title attribute on Document (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/dom/document-attribute-js-null-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/dom/document-attribute-js-null.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/document-attribute-js-null.html b/third_party/WebKit/LayoutTests/fast/dom/document-attribute-js-null.html
index de379ef30fa730f5dd4c1f48842afaca2692a053..73e03f1a55504d0e416dd4282857d4ad1a4c80b7 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/document-attribute-js-null.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/document-attribute-js-null.html
@@ -19,6 +19,8 @@
return "<b>the empty string</b>";
else if (result === null)
return "<b>null</b>";
+ else if (result === "null")
+ return "<b>'null'</b>";
else if (result === undefined)
return "<b>undefined</b>";
return "the string '" + result + "'";
@@ -77,7 +79,7 @@
typeName: 'HTMLDocument',
docToUse: htmlDoc,
attributes: [
- {name: 'title', expectedNull: ''},
+ {name: 'title', expectedNull: 'null'},
{name: 'cookie', expectedNull: ''},
{name: 'bgColor', expectedNull: ''},
{name: 'fgColor', expectedNull: ''},
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/dom/document-attribute-js-null-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698