| Index: LayoutTests/imported/csswg-test/css-writing-modes-3/writing-mode-parsing-sideways-lr-001.html
|
| diff --git a/LayoutTests/imported/csswg-test/css-writing-modes-3/writing-mode-parsing-sideways-lr-001.html b/LayoutTests/imported/csswg-test/css-writing-modes-3/writing-mode-parsing-sideways-lr-001.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..95ca10e8de000fadadbb054b2d73157ae264a262
|
| --- /dev/null
|
| +++ b/LayoutTests/imported/csswg-test/css-writing-modes-3/writing-mode-parsing-sideways-lr-001.html
|
| @@ -0,0 +1,20 @@
|
| +<!DOCTYPE html>
|
| +<title>CSS Writing Modes: parsing writing-mode: sideways-lr</title>
|
| +<link rel="author" title="Koji Ishii" href="kojiishi@gmail.com">
|
| +<link rel="help" href="https://drafts.csswg.org/css-writing-modes-3/#block-flow">
|
| +<meta name="assert" content="This test asserts the parser and getComputedStyle works correctly for the writing-mode: sideways-lr.">
|
| +<meta name="flags" content="dom">
|
| +<script src="../../../resources/testharness.js"></script>
|
| +<script src="../../../resources/testharnessreport.js"></script>
|
| +
|
| +<div style="-webkit-writing-mode: sideways-lr"
|
| + data-expected="sideways-lr"></div>
|
| +
|
| +<script>
|
| +Array.prototype.forEach.call(document.querySelectorAll("[data-expected]"), function (element) {
|
| + test(function () {
|
| + var actual = getComputedStyle(element).writingMode;
|
| + assert_equals(actual, element.dataset.expected);
|
| + }, element.title || element.getAttribute("style"));
|
| +});
|
| +</script>
|
|
|