summaryrefslogtreecommitdiff
path: root/layout/reftests/w3c-css/submitted/flexbox/flexbox-writing-mode-012.html
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2022-09-27 20:03:42 +0000
committerMoonchild <moonchild@palemoon.org>2022-09-27 20:03:42 +0000
commit4bf2bf74b15772ca9c63188cd1d6c6fc046c0ed0 (patch)
treed07ea07bc201d9576e33d5c61551b27c2c2b4bae /layout/reftests/w3c-css/submitted/flexbox/flexbox-writing-mode-012.html
parentb575f4a51645fe050f76420609eb8c8d585e2626 (diff)
downloaduxp-4bf2bf74b15772ca9c63188cd1d6c6fc046c0ed0.tar.gz
Revert "Issue #1986 - Add in reftests for new behavior."
This reverts commit 2fc5e3ad7d2b09a32e79cb201e405f57329c297e.
Diffstat (limited to 'layout/reftests/w3c-css/submitted/flexbox/flexbox-writing-mode-012.html')
-rw-r--r--layout/reftests/w3c-css/submitted/flexbox/flexbox-writing-mode-012.html90
1 files changed, 0 insertions, 90 deletions
diff --git a/layout/reftests/w3c-css/submitted/flexbox/flexbox-writing-mode-012.html b/layout/reftests/w3c-css/submitted/flexbox/flexbox-writing-mode-012.html
deleted file mode 100644
index a7b05f178d..0000000000
--- a/layout/reftests/w3c-css/submitted/flexbox/flexbox-writing-mode-012.html
+++ /dev/null
@@ -1,90 +0,0 @@
-<!DOCTYPE html>
-<!--
- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/
--->
-<html>
-<head>
- <title>
- CSS Test: Testing a mix of flex items with various values for
- 'writing-mode' / 'direction' in a vertical row-oriented flex container
- with 'direction' flipped.
- </title>
- <meta charset="utf-8">
- <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
- <link rel="help" href="https://www.w3.org/TR/css-flexbox-1/#flex-direction-property">
- <link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#propdef-writing-mode">
- <link rel="match" href="flexbox-writing-mode-012-ref.html">
- <link rel="stylesheet" type="text/css" href="support/ahem.css">
- <style>
- .container {
- display: flex;
- flex-direction: row;
- float: left;
- border: 2px solid purple;
- padding: 2px;
- margin-bottom: 2em;
- height: 500px;
- width: 150px;
- }
-
- span {
- display: block;
- background: lightgrey;
- border: 2px solid black;
- /* If browser supports it, signal the inline direction with border color: */
- border-block-start-color: orange;
- border-inline-start-color: lime;
-
- margin: 11px 13px 17px 7px;
- inline-size: 6px;
- }
-
- .small { font: 12px Ahem; }
- .big { font: 20px Ahem; }
-
- .hl { writing-mode: horizontal-tb; direction: ltr; }
- .hr { writing-mode: horizontal-tb; direction: rtl; }
- .vl { writing-mode: vertical-lr; direction: ltr; }
- .vr { writing-mode: vertical-rl; direction: ltr; }
- .vl_rtl { writing-mode: vertical-lr; direction: rtl; }
- .vr_rtl { writing-mode: vertical-rl; direction: rtl; }
- </style>
-</head>
-<body>
-
-<div class="container vl_rtl">
- <span class="hl small">a b c</span>
- <span class="hl big">d e</span>
- <span class="hr small">a b c</span>
- <span class="hr big">d e</span>
- <span class="vl small">a b c</span>
- <span class="vl big">d e</span>
-</div>
-<div class="container vl_rtl">
- <span class="vr small">a b c</span>
- <span class="vr big">d e</span>
- <span class="vl_rtl small">a b c</span>
- <span class="vl_rtl big">d e</span>
- <span class="vr_rtl small">a b c</span>
- <span class="vr_rtl big">d e</span>
-</div>
-<div class="container vr_rtl">
- <span class="hl small">a b c</span>
- <span class="hl big">d e</span>
- <span class="hr small">a b c</span>
- <span class="hr big">d e</span>
- <span class="vl small">a b c</span>
- <span class="vl big">d e</span>
-</div>
-<div class="container vr_rtl">
- <span class="vr small">a b c</span>
- <span class="vr big">d e</span>
- <span class="vl_rtl small">a b c</span>
- <span class="vl_rtl big">d e</span>
- <span class="vr_rtl small">a b c</span>
- <span class="vr_rtl big">d e</span>
-</div>
-
-</body>
-</html>