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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/invalidation/independent-inheritance-fast-path.html

Issue 2821073002: Do not parse caption-side: left / right as valid CSS. (Closed)
Patch Set: Do not parse caption-side: left / right as valid CSS. Created 3 years, 8 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css/invalidation/independent-inheritance-fast-path-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/css/invalidation/independent-inheritance-fast-path.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/invalidation/independent-inheritance-fast-path.html b/third_party/WebKit/LayoutTests/fast/css/invalidation/independent-inheritance-fast-path.html
index 981f81cdd1f2fa93af9c66c1631dae1be328d4f9..3445b942cb4442647a650606f7430db2c986d601 100644
--- a/third_party/WebKit/LayoutTests/fast/css/invalidation/independent-inheritance-fast-path.html
+++ b/third_party/WebKit/LayoutTests/fast/css/invalidation/independent-inheritance-fast-path.html
@@ -18,7 +18,7 @@ var independent_properties = [
["whiteSpace", ["normal", "pre", "pre-wrap", "pre-line", "nowrap"]],
["borderCollapse", ["separate", "collapse"]],
["emptyCells", ["show", "hide"]],
- ["captionSide", ["top", "bottom", "left", "right"]],
+ ["captionSide", ["top", "bottom"]],
["listStylePosition", ["outside", "inside"]],
["webkitBoxDirection", ["normal", "reverse"]],
["webkitPrintColorAdjust", ["economy", "exact"]],
@@ -36,7 +36,7 @@ independent_properties.forEach(function(test_data)
// style recalc.
for (i = 0; i < num_keywords; i++) {
var value1 = keywords[i];
- // Use the next keyword in the list, or if it is the last one, wrap around and
+ // Use the next keyword in the list, or if it is the last one, wrap around and
// use the first.
var value2 = keywords[(i + 1) % num_keywords];
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css/invalidation/independent-inheritance-fast-path-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698