Index: LayoutTests/fast/dom/domstring-attribute-reflection-expected.txt |
diff --git a/LayoutTests/fast/dom/domstring-attribute-reflection-expected.txt b/LayoutTests/fast/dom/domstring-attribute-reflection-expected.txt |
index b585fd03779016200684c9d8b1cb705de6308319..acec1de1c856ba6a6d0280aa995e6dc0ae960e6e 100644 |
--- a/LayoutTests/fast/dom/domstring-attribute-reflection-expected.txt |
+++ b/LayoutTests/fast/dom/domstring-attribute-reflection-expected.txt |
@@ -99,8 +99,8 @@ Setting a value via the content attribute: |
PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" |
PASS element.getAttribute("name") is " bar\n" |
Setting null via the IDL attribute: |
-PASS element.name = null; element.name is "" |
-PASS element.getAttribute("name") is null |
+PASS element.name = null; element.name is "null" |
+PASS element.getAttribute("name") is "null" |
Setting null via the content attribute: |
PASS element.setAttribute("name", null); element.name is "null" |
PASS element.getAttribute("name") is "null" |
@@ -129,8 +129,8 @@ Setting a value via the content attribute: |
PASS element.setAttribute("step", " bar\n"); element.step is " bar\n" |
PASS element.getAttribute("step") is " bar\n" |
Setting null via the IDL attribute: |
-PASS element.step = null; element.step is "" |
-PASS element.getAttribute("step") is null |
+PASS element.step = null; element.step is "null" |
+PASS element.getAttribute("step") is "null" |
Setting null via the content attribute: |
PASS element.setAttribute("step", null); element.step is "null" |
PASS element.getAttribute("step") is "null" |