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

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

Issue 1977323002: Revert of 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, 7 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 2dccc3e1d2fcffe7d36d5847d0458fa404690430..cc760453aeccae84446efa55b1091f53353de0c5 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
@@ -40,23 +40,23 @@
<script src="../../resources/testharnessreport.js"></script>
<script>
test(function () {
- assert_equals(getComputedStyle(simple_quotes).content, 'normal');
+ assert_equals(getComputedStyle(simple_quotes).content, '');
assert_equals(getComputedStyle(simple_quotes, 'before').content, 'open-quote "quoted A" close-quote');
- assert_equals(getComputedStyle(simple_custom_quotes).content, 'normal');
+ assert_equals(getComputedStyle(simple_custom_quotes).content, '');
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, 'normal');
+ assert_equals(getComputedStyle(complex_quotes).content, '');
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, 'normal');
+ assert_equals(getComputedStyle(complex_custom_quotes).content, '');
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, 'normal');
+ assert_equals(getComputedStyle(both_sides_custom_quotes).content, '');
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