Chromium Code Reviews| Index: LayoutTests/fast/css/getComputedStyle/computed-style-properties.html |
| diff --git a/LayoutTests/fast/css/getComputedStyle/computed-style-properties.html b/LayoutTests/fast/css/getComputedStyle/computed-style-properties.html |
| index 71833c7d467e18fde5f1b745bd915345e14fc8f8..1602f6d5627b32c9c4e6deb5289019e0951c48df 100644 |
| --- a/LayoutTests/fast/css/getComputedStyle/computed-style-properties.html |
| +++ b/LayoutTests/fast/css/getComputedStyle/computed-style-properties.html |
| @@ -65,8 +65,8 @@ function computedStyleFor(id, pseudo, property) |
| shouldBe("computedStyleFor('outline', null, 'outline-offset')", "'5px'"); |
| -shouldBe("computedStyleFor('content', 'before', 'content')", '"\'text\'"'); |
| -shouldBe("computedStyleFor('content', 'after', 'content')", '"\'test \' url(data:image/gif;base64,R0lGODlhAQABAJAAAP8AAAAAACwAAAAAAQABAAACAgQBADs=)"'); |
| +shouldBe("computedStyleFor('content', 'before', 'content')", "\"text\""); |
| +shouldBe("computedStyleFor('content', 'after', 'content')", '\"test \" url(data:image/gif;base64,R0lGODlhAQABAJAAAP8AAAAAACwAAAAAAQABAAACAgQBADs=)'); |
|
Timothy Loh
2015/04/24 10:23:58
Maybe you want shouldBeEqualToString here? You upl
|
| shouldBe("computedStyleFor('counter', null, 'counter-reset')", "'section 0'"); |
| var str = computedStyleFor('subcounter', null, 'counter-reset'); |
| shouldBe("str.indexOf('subsection 0') != -1", "true"); |