aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/css/css-flexbox/css-flexbox-row-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/wpt/web-platform-tests/css/css-flexbox/css-flexbox-row-ref.html')
-rw-r--r--tests/wpt/web-platform-tests/css/css-flexbox/css-flexbox-row-ref.html30
1 files changed, 12 insertions, 18 deletions
diff --git a/tests/wpt/web-platform-tests/css/css-flexbox/css-flexbox-row-ref.html b/tests/wpt/web-platform-tests/css/css-flexbox/css-flexbox-row-ref.html
index 91eb06c19a6..21e7a010c7e 100644
--- a/tests/wpt/web-platform-tests/css/css-flexbox/css-flexbox-row-ref.html
+++ b/tests/wpt/web-platform-tests/css/css-flexbox/css-flexbox-row-ref.html
@@ -4,27 +4,21 @@
<meta charset="utf-8" />
<title>CSS Reftest Reference</title>
<link rel="author" title="Tsutomu ogaoga Ogasawara" href="mailto:info@ogaoga.org">
- <style type="text/css">
- .container {
- color: white;
- }
+
+ <style>
.item {
- writing-mode: vertical-rl;
- background: green;
- height: 3em;
- width: 3em;
- line-height: 1.5em;
+ width: 15px;
+ height: 45px;
+ float: left;
}
</style>
</head>
-<body>
- <p>The test passes if you see a tall green box with pairs of the 1-9 and a-i listed top to bottom in two columns.</p>
- <div class="container">
- <div class="item">123<br />abc</div>
- <div class="item">456<br />def</div>
- <div class="item">789<br />ghi</div>
- </div>
+<p>Pass condition: 4 rectangles, with colors in clockwise order starting from top-left: grey, orange, blue, yellow.
-</body>
-</html>
+<div style="height: 90px; width: 30px; border: 2px solid black;">
+ <div class="item" style="background: grey"></div>
+ <div class="item" style="background: orange"></div>
+ <div class="item" style="background: yellow"></div>
+ <div class="item" style="background: blue"></div>
+</div>