| Index: third_party/WebKit/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style-inherit-simple-underlines.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style-inherit-simple-underlines.html b/third_party/WebKit/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style-inherit-simple-underlines.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7f4332c2fd2fcdde6671127e8e1bbfc0101aec84
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style-inherit-simple-underlines.html
|
| @@ -0,0 +1,54 @@
|
| +<!DOCTYPE html>
|
| +<script>
|
| +if (window.testRunner)
|
| + testRunner.dumpAsTextWithPixelResults();
|
| +</script>
|
| +
|
| +<style>
|
| +/* Make decorations bigger so they are easier to see */
|
| +body {
|
| + font-size: 15px;
|
| +}
|
| +body > div {
|
| + margin-bottom: 15px;
|
| +}
|
| +</style>
|
| +
|
| +<!-- Special optimization for 'simple' underlines -->
|
| +<div style="text-decoration: underline;">
|
| + Solid black underline.
|
| +</div>
|
| +
|
| +<div style="text-decoration: underline overline;">
|
| + <div style="text-decoration: underline wavy green;">
|
| + Solid black overline, solid black underline with wavy green underline on top.
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="text-decoration: underline wavy green;">
|
| + <div>
|
| + <div style="text-decoration: underline;">
|
| + Wavy green underline, solid black underline on top.
|
| + </div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="text-decoration: underline;">
|
| + <div>
|
| + <div style="text-decoration: underline wavy green;">
|
| + Solid black underline, wavy green underline on top.
|
| + </div>
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="text-decoration: underline wavy red;">
|
| + <div style="text-decoration: underline;">
|
| + Wavy red underline, solid black underline on top.
|
| + </div>
|
| +</div>
|
| +
|
| +<div style="text-decoration: underline wavy red; color: blue;">
|
| + <div style="text-decoration: underline;">
|
| + Wavy red underline, solid blue underline on top, blue text.
|
| + </div>
|
| +</div>
|
|
|