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

Unified Diff: LayoutTests/css3/font-weight-multiple-selectors.html

Issue 137813004: Multiple selectors setting relative font-weight names to an element result in a cumulative result (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Improve testcase Created 6 years, 10 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 | LayoutTests/css3/font-weight-multiple-selectors-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/css3/font-weight-multiple-selectors.html
diff --git a/LayoutTests/css3/font-weight.html b/LayoutTests/css3/font-weight-multiple-selectors.html
similarity index 86%
copy from LayoutTests/css3/font-weight.html
copy to LayoutTests/css3/font-weight-multiple-selectors.html
index 6c83be881241fa40d92131aa7c43e1cdc0dae8d1..67aeeaf8ec6831a1d37eb04d307d2d6cf2c13543 100644
--- a/LayoutTests/css3/font-weight.html
+++ b/LayoutTests/css3/font-weight-multiple-selectors.html
@@ -1,8 +1,9 @@
<html>
<head>
<style>
-#bolder { font-weight: bolder; }
-#lighter { font-weight: lighter; }
+#outer > div { font-weight: bolder; }
+#outer > div#bolder { font-weight: bolder; }
+#outer > div#lighter { font-weight: lighter; }
</style>
<script src="../resources/js-test.js"></script>
</head>
@@ -13,7 +14,7 @@
</div>
<div id="console"></div>
<script>
-description('Test that font-weight: bolder and font-weight: lighter behave according to spec.');
+description('Test that font-weight: bolder and font-weight: lighter are not cumulative when multiple selectors apply.');
table = [
["100" , "100" , "normal", "100"],
« no previous file with comments | « no previous file | LayoutTests/css3/font-weight-multiple-selectors-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698