Index: third_party/WebKit/LayoutTests/fast/css/content-property-quote-types.html |
diff --git a/third_party/WebKit/LayoutTests/fast/css/content-property-quote-types.html b/third_party/WebKit/LayoutTests/fast/css/content-property-quote-types.html |
index c035c1eff33a4ba322bd71c2090142345275f542..6c493b82875db47c4243fcb052ca2fa880134044 100644 |
--- a/third_party/WebKit/LayoutTests/fast/css/content-property-quote-types.html |
+++ b/third_party/WebKit/LayoutTests/fast/css/content-property-quote-types.html |
@@ -39,23 +39,23 @@ |
<script src="../../resources/testharnessreport.js"></script> |
<script> |
test(function () { |
- assert_equals(getComputedStyle(simple_quotes).content, ''); |
+ assert_equals(getComputedStyle(simple_quotes).content, 'normal'); |
assert_equals(getComputedStyle(simple_quotes, 'before').content, 'open-quote "quoted A" close-quote'); |
- assert_equals(getComputedStyle(simple_custom_quotes).content, ''); |
+ assert_equals(getComputedStyle(simple_custom_quotes).content, 'normal'); |
assert_equals(getComputedStyle(simple_custom_quotes, 'before').content, 'open-quote "quoted A" close-quote'); |
}, "Check that the content attribute includes quote keywords when quotes are used"); |
test(function () { |
- assert_equals(getComputedStyle(complex_quotes).content, ''); |
+ assert_equals(getComputedStyle(complex_quotes).content, 'normal'); |
assert_equals(getComputedStyle(complex_quotes, 'before').content, 'open-quote "quoted A" open-quote "quoted B" no-close-quote close-quote'); |
- assert_equals(getComputedStyle(complex_custom_quotes).content, ''); |
+ assert_equals(getComputedStyle(complex_custom_quotes).content, 'normal'); |
assert_equals(getComputedStyle(complex_custom_quotes, 'before').content, 'open-quote "quoted A" open-quote "quoted B" no-close-quote close-quote'); |
}, "Check that the content attribute includes quote keywords when nested quotes are used"); |
test(function () { |
- assert_equals(getComputedStyle(both_sides_custom_quotes).content, ''); |
+ assert_equals(getComputedStyle(both_sides_custom_quotes).content, 'normal'); |
assert_equals(getComputedStyle(both_sides_custom_quotes, 'before').content, 'open-quote "quoted A" open-quote "quoted B" no-close-quote close-quote'); |
assert_equals(getComputedStyle(both_sides_custom_quotes, 'after').content, 'open-quote "quoted C" no-open-quote "quoted D" close-quote no-close-quote'); |
}, "Check that the content attribute includes quote keywords when quotes are used both :before and :after"); |