| 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: ''},
|
|
|