Chromium Code Reviews| Index: LayoutTests/fast/css/recalc-optgroup-inherit.html |
| diff --git a/LayoutTests/fast/css/recalc-optgroup-inherit.html b/LayoutTests/fast/css/recalc-optgroup-inherit.html |
| deleted file mode 100644 |
| index 90be4abfbcefaff2f4efef7fe434f6cf3a7d5e94..0000000000000000000000000000000000000000 |
| --- a/LayoutTests/fast/css/recalc-optgroup-inherit.html |
| +++ /dev/null |
| @@ -1,14 +0,0 @@ |
| -<!DOCTYPE html> |
| -<script src="../../resources/js-test.js"></script> |
| -<select id="s"> |
| - <optgroup id="g" style="color:red"> |
| - <option id="o">Green</option> |
| - </optgroup> |
| -</select> |
| -<script> |
| -description("Check that OPTION inherits the modified OPTGROUP color."); |
|
keishi
2014/07/01 05:06:35
We specify option font color in html.css so we no
|
| - |
| -document.body.offsetTop; // force style recalc. |
| -document.getElementById("g").style.color = "green"; |
| -shouldBe("getComputedStyle(document.getElementById('o'), null).color", "'rgb(0, 128, 0)'"); |
| -</script> |