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"], |