| Index: third_party/WebKit/LayoutTests/external/wpt/css/CSS2/positioning/right-applies-to-015.xht
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/css/CSS2/positioning/right-applies-to-015.xht b/third_party/WebKit/LayoutTests/external/wpt/css/CSS2/positioning/right-applies-to-015.xht
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ae266cea354db48d2271a7c3b84208dab9c75aba
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/css/CSS2/positioning/right-applies-to-015.xht
|
| @@ -0,0 +1,47 @@
|
| +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| +<html xmlns="http://www.w3.org/1999/xhtml">
|
| + <head>
|
| + <title>CSS Test: Right applied to element with 'display' set to 'table-caption'</title>
|
| + <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
|
| + <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-09-25 -->
|
| + <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#propdef-right" />
|
| + <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#dis-pos-flo" />
|
| + <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#position-props" />
|
| + <link rel="match" href="right-applies-to-001-ref.xht" />
|
| +
|
| + <meta name="flags" content="" />
|
| + <meta name="assert" content="The 'right' property applies to elements with a display of 'table-caption'." />
|
| + <style type="text/css">
|
| + #caption
|
| + {
|
| + background: green;
|
| + right: 0;
|
| + display: table-caption;
|
| + height: 1in;
|
| + position: absolute;
|
| + width: 1in;
|
| + }
|
| + #table
|
| + {
|
| + display: table;
|
| + }
|
| + #row
|
| + {
|
| + display: table-row;
|
| + }
|
| + #cell
|
| + {
|
| + display: table-cell;
|
| + }
|
| + </style>
|
| + </head>
|
| + <body>
|
| + <p>Test passes if there is a green square on the right side of the page.</p>
|
| + <div id="table">
|
| + <div id="caption"></div>
|
| + <div id="row">
|
| + <div id="cell"></div>
|
| + </div>
|
| + </div>
|
| + </body>
|
| +</html>
|
|
|