Bug 1545675 [wpt PR 16364] - WPT/BGPT: Add animation stop and set time tests, make...
[gecko.git] / testing / web-platform / tests / css / css-text-decor / text-decoration-line-recalc.html
blob321aea9f3d93f31685878a14bfc67f9c3e9cf63e
1 <!doctype html>
2 <link rel="help" href="https://www.w3.org/TR/css-text-decor-3/#text-decoration-line">
3 <link rel="match" href="reference/text-decoration-line-recalc-ref.html">
4 <style>
5 div {
6 font-size: 50px;
7 text-decoration: underline solid green;
9 </style>
10 <script>
11 onload = function() {
12 target.style.textDecorationLine = "overline";
14 </script>
15 <p>Test that changes in text-decoration-line are recalculated correctly. PASS
16 if the text below has a solid green overline, and no underline.</p>
17 <div id="target">
18 Filler text
19 </div>