Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1025)

Unified Diff: third_party/WebKit/LayoutTests/fast/css/content-property-quote-types.html

Issue 1812763002: Pseudo and non pseudo elements should return correct computed content value (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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");

Powered by Google App Engine
This is Rietveld 408576698