| Index: third_party/WebKit/LayoutTests/imported/csswg-test/css-text-decor-3/text-emphasis-position-below-left-002.xht
|
| diff --git a/third_party/WebKit/LayoutTests/imported/csswg-test/css-text-decor-3/text-emphasis-position-below-left-002.xht b/third_party/WebKit/LayoutTests/imported/csswg-test/css-text-decor-3/text-emphasis-position-below-left-002.xht
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..1f384b50444803368062f35cf986a78fd8597af3
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/imported/csswg-test/css-text-decor-3/text-emphasis-position-below-left-002.xht
|
| @@ -0,0 +1,75 @@
|
| +<?xml version="1.0" encoding="UTF-8"?>
|
| +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
| +<html xmlns="http://www.w3.org/1999/xhtml">
|
| + <head>
|
| + <title>CSS Test: text-emphasis-position - below left - basic cases</title>
|
| + <link rel="author" title="Makoto Kikuchi" href="mailto:kikuchi@est.co.jp" />
|
| + <link rel="help" title="CSS Text Level 3: 11.2.4. Emphasis Mark Position: the ‘text-emphasis-position’ property" href="http://www.w3.org/TR/css-text-3/#text-emphasis-position" />
|
| + <link rel="match" href="reference/text-emphasis-position-below-left-002-ref.xht"/>
|
| + <meta name="flags" content="ahem" />
|
| + <meta name="assert" content="This property describes where emphasis marks are drawn at." />
|
| + <style type="text/css"><![CDATA[
|
| + .test
|
| + {
|
| + -webkit-text-emphasis-style: filled circle;
|
| + -webkit-text-emphasis-position: below left;
|
| + }
|
| +
|
| + .test-vertical
|
| + {
|
| + writing-mode: vertical-rl;
|
| + }
|
| + /* the CSS below is not part of the test */
|
| + .common
|
| + {
|
| + line-height: 1em;
|
| + position: relative;
|
| + }
|
| + .displayarea
|
| + {
|
| + border: solid 1px gray;
|
| + padding: 10px;
|
| + width: 10em;
|
| + }
|
| + .floatright
|
| + {
|
| + float: right;
|
| + }
|
| + .parent
|
| + {
|
| + background: yellow;
|
| + border: solid 1px gray;
|
| + color: blue;
|
| + font: 20px/1em ahem;
|
| + height: 6em;
|
| + width: 2em;
|
| + }
|
| + .refcommon
|
| + {
|
| + font-size: 0.5em;
|
| + left: 1.1em;
|
| + position: absolute;
|
| + top: 0.1em;
|
| + }
|
| + ]]></style>
|
| + </head>
|
| + <body>
|
| + <div>
|
| + <p>Test passes if a pair of left and right block in the square box is identical.</p>
|
| + <p>vertical</p>
|
| + <div class="displayarea">
|
| + <div class="parent floatright">
|
| + <span class="common"> a<span class="refcommon">●</span></span><br />
|
| + <span class="common"> b<span class="refcommon">●</span></span><br />
|
| + <span class="common"> c<span class="refcommon">●</span></span><br />
|
| + <br />
|
| + <span class="common"> d</span><br />
|
| + <span class="common"> e</span><br />
|
| + </div>
|
| + <div class="parent test-vertical">
|
| + <span class="test">abc</span> de
|
| + </div>
|
| + </div>
|
| + </div>
|
| + </body>
|
| +</html>
|
|
|