Index: LayoutTests/fast/dom/boolean-attribute-reflection-expected.txt |
diff --git a/LayoutTests/fast/dom/boolean-attribute-reflection-expected.txt b/LayoutTests/fast/dom/boolean-attribute-reflection-expected.txt |
index c1dd79355a285f513411993c944d2315af5064ad..f74d535f419d1ff0b24bf8fa688cf7340e0b348b 100644 |
--- a/LayoutTests/fast/dom/boolean-attribute-reflection-expected.txt |
+++ b/LayoutTests/fast/dom/boolean-attribute-reflection-expected.txt |
@@ -83,10 +83,6 @@ PASS e = make('option'); e.removeAttribute('selected'); e.defaultSelected is fal |
PASS e = make('option'); e.setAttribute('selected', ''); e.defaultSelected is true |
PASS e = make('option'); e.setAttribute('selected', 'x'); e.defaultSelected = false; e.getAttribute('selected') is null |
PASS e = make('option'); e.setAttribute('selected', 'x'); e.defaultSelected = true; e.getAttribute('selected') is '' |
-PASS e = make('pre'); e.removeAttribute('wrap'); e.wrap is false |
-PASS e = make('pre'); e.setAttribute('wrap', ''); e.wrap is true |
-PASS e = make('pre'); e.setAttribute('wrap', 'x'); e.wrap = false; e.getAttribute('wrap') is null |
-PASS e = make('pre'); e.setAttribute('wrap', 'x'); e.wrap = true; e.getAttribute('wrap') is '' |
PASS e = make('script'); e.removeAttribute('defer'); e.defer is false |
PASS e = make('script'); e.setAttribute('defer', ''); e.defer is true |
PASS e = make('script'); e.setAttribute('defer', 'x'); e.defer = false; e.getAttribute('defer') is null |