Skip to content

Commit

Permalink
Tests for directionality and shadow DOM (web-platform-tests#29820)
Browse files Browse the repository at this point in the history
Tests for :dir() and shadow DOM for issue web-platform-tests#3699

Co-authored-by: Brian Kardell <bkardell@gmail.com>
Co-authored-by: L. David Baron <dbaron@chromium.org>
  • Loading branch information
3 people authored and Lightning00Blade committed Dec 11, 2023
1 parent 7d6be0a commit a620952
Show file tree
Hide file tree
Showing 83 changed files with 2,258 additions and 0 deletions.
23 changes: 23 additions & 0 deletions html/dom/elements/global-attributes/dir-shadow-01-ref.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>[dir] and shadow slots: dir=ltr on the slot, paragraph in the light tree</title>
<link rel="author" title="Eric Meyer" href="mailto:emeyer@igalia.com">
<link rel="help" href="https://html.spec.whatwg.org/multipage/C#the-dir-attribute">
<link rel="help" href="https://github.com/whatwg/html/issues/3699">
<link rel="help" href="https://github.com/whatwg/html/pull/9796">
<style type="text/css">
body {width: 600px;}
div {border: 1px solid gray; margin: 1em;}
div p {width: 50%; border: 1px dotted;}
</style>
</head>
<body>

<p>`dir=ltr` on the &lt;slot&gt;, paragraph in the light tree</p>
<div id="host"><p>paragraph.</p></div>
<p id="result">The HTML direction / computed CSS `direction` value for the paragraph is: ltr / ltr.</p>

</body>
</html>
33 changes: 33 additions & 0 deletions html/dom/elements/global-attributes/dir-shadow-01.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>[dir] and shadow slots: dir=ltr on the slot, paragraph in the light tree</title>
<link rel="author" title="Eric Meyer" href="mailto:emeyer@igalia.com">
<link rel="help" href="https://html.spec.whatwg.org/multipage/C#the-dir-attribute">
<link rel="help" href="https://github.com/whatwg/html/issues/3699">
<link rel="help" href="https://github.com/whatwg/html/pull/9796">
<link rel="match" href="dir-shadow-01-ref.html">
<style type="text/css">
body {width: 600px;}
div {border: 1px solid gray; margin: 1em;}
div p {width: 50%; border: 1px dotted;}
</style>
<script src="dir-shadow-utils.js"></script>
</head>
<body>

<p>`dir=ltr` on the &lt;slot&gt;, paragraph in the light tree</p>
<div id="host"><p>paragraph.</p></div>
<p id="result">The HTML direction / computed CSS `direction` value for the paragraph is: </p>

<script type="text/javascript">
let root = host.attachShadow({mode:"open"});
root.innerHTML = `
<slot dir="ltr"></slot>
`;
result.innerHTML += html_direction(host.firstChild) + " / " + getComputedStyle(host.firstChild).direction + '.';
</script>

</body>
</html>
23 changes: 23 additions & 0 deletions html/dom/elements/global-attributes/dir-shadow-02-ref.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>[dir] and shadow slots: dir=ltr on the slot, paragraph in the light tree</title>
<link rel="author" title="Eric Meyer" href="mailto:emeyer@igalia.com">
<link rel="help" href="https://html.spec.whatwg.org/multipage/C#the-dir-attribute">
<link rel="help" href="https://github.com/whatwg/html/issues/3699">
<link rel="help" href="https://github.com/whatwg/html/pull/9796">
<style type="text/css">
body {width: 600px;}
div {border: 1px solid gray; margin: 1em;}
div p {width: 50%; border: 1px dotted;}
</style>
</head>
<body>

<p>`dir=ltr` on the &lt;slot&gt;, paragraph in the light tree</p>
<div id="host"><p>اختبر.</p></div>
<p id="result">The HTML direction / computed CSS `direction` value for the paragraph is: ltr / ltr.</p>

</body>
</html>
33 changes: 33 additions & 0 deletions html/dom/elements/global-attributes/dir-shadow-02.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>[dir] and shadow slots: dir=ltr on the slot, paragraph in the light tree</title>
<link rel="author" title="Eric Meyer" href="mailto:emeyer@igalia.com">
<link rel="help" href="https://html.spec.whatwg.org/multipage/C#the-dir-attribute">
<link rel="help" href="https://github.com/whatwg/html/issues/3699">
<link rel="help" href="https://github.com/whatwg/html/pull/9796">
<link rel="match" href="dir-shadow-02-ref.html">
<style type="text/css">
body {width: 600px;}
div {border: 1px solid gray; margin: 1em;}
div p {width: 50%; border: 1px dotted;}
</style>
<script src="dir-shadow-utils.js"></script>
</head>
<body>

<p>`dir=ltr` on the &lt;slot&gt;, paragraph in the light tree</p>
<div id="host"><p>اختبر.</p></div>
<p id="result">The HTML direction / computed CSS `direction` value for the paragraph is: </p>

<script type="text/javascript">
let root = host.attachShadow({mode:"open"});
root.innerHTML = `
<slot dir="ltr"></slot>
`;
result.innerHTML += html_direction(host.firstChild) + " / " + getComputedStyle(host.firstChild).direction + '.';
</script>

</body>
</html>
23 changes: 23 additions & 0 deletions html/dom/elements/global-attributes/dir-shadow-03-ref.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>[dir] and shadow slots: dir=rtl on the slot, paragraph in the light tree</title>
<link rel="author" title="Eric Meyer" href="mailto:emeyer@igalia.com">
<link rel="help" href="https://html.spec.whatwg.org/multipage/C#the-dir-attribute">
<link rel="help" href="https://github.com/whatwg/html/issues/3699">
<link rel="help" href="https://github.com/whatwg/html/pull/9796">
<style type="text/css">
body {width: 600px;}
div {border: 1px solid gray; margin: 1em;}
div p {width: 50%; border: 1px dotted;}
</style>
</head>
<body>

<p>`dir=rtl` on the &lt;slot&gt;, paragraph in the light tree</p>
<div id="host"><p dir="rtl">paragraph.</p></div>
<p id="result">The HTML direction / computed CSS `direction` value for the paragraph is: ltr / rtl.</p>

</body>
</html>
33 changes: 33 additions & 0 deletions html/dom/elements/global-attributes/dir-shadow-03.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>[dir] and shadow slots: dir=rtl on the slot, paragraph in the light tree</title>
<link rel="author" title="Eric Meyer" href="mailto:emeyer@igalia.com">
<link rel="help" href="https://html.spec.whatwg.org/multipage/C#the-dir-attribute">
<link rel="help" href="https://github.com/whatwg/html/issues/3699">
<link rel="help" href="https://github.com/whatwg/html/pull/9796">
<link rel="match" href="dir-shadow-03-ref.html">
<style type="text/css">
body {width: 600px;}
div {border: 1px solid gray; margin: 1em;}
div p {width: 50%; border: 1px dotted;}
</style>
<script src="dir-shadow-utils.js"></script>
</head>
<body>

<p>`dir=rtl` on the &lt;slot&gt;, paragraph in the light tree</p>
<div id="host"><p>paragraph.</p></div>
<p id="result">The HTML direction / computed CSS `direction` value for the paragraph is: </p>

<script type="text/javascript">
let root = host.attachShadow({mode:"open"});
root.innerHTML = `
<slot dir="rtl"></slot>
`;
result.innerHTML += html_direction(host.firstChild) + " / " + getComputedStyle(host.firstChild).direction + '.';
</script>

</body>
</html>
23 changes: 23 additions & 0 deletions html/dom/elements/global-attributes/dir-shadow-04-ref.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>[dir] and shadow slots: dir=rtl on the slot, paragraph in the light tree</title>
<link rel="author" title="Eric Meyer" href="mailto:emeyer@igalia.com">
<link rel="help" href="https://html.spec.whatwg.org/multipage/C#the-dir-attribute">
<link rel="help" href="https://github.com/whatwg/html/issues/3699">
<link rel="help" href="https://github.com/whatwg/html/pull/9796">
<style type="text/css">
body {width: 600px;}
div {border: 1px solid gray; margin: 1em;}
div p {width: 50%; border: 1px dotted;}
</style>
</head>
<body>

<p>`dir=rtl` on the &lt;slot&gt;, paragraph in the light tree</p>
<div id="host"><p dir="rtl">اختبر.</p></div>
<p id="result">The HTML direction / computed CSS `direction` value for the paragraph is: ltr / rtl.</p>

</body>
</html>
33 changes: 33 additions & 0 deletions html/dom/elements/global-attributes/dir-shadow-04.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>[dir] and shadow slots: dir=rtl on the slot, paragraph in the light tree</title>
<link rel="author" title="Eric Meyer" href="mailto:emeyer@igalia.com">
<link rel="help" href="https://html.spec.whatwg.org/multipage/C#the-dir-attribute">
<link rel="help" href="https://github.com/whatwg/html/issues/3699">
<link rel="help" href="https://github.com/whatwg/html/pull/9796">
<link rel="match" href="dir-shadow-04-ref.html">
<style type="text/css">
body {width: 600px;}
div {border: 1px solid gray; margin: 1em;}
div p {width: 50%; border: 1px dotted;}
</style>
<script src="dir-shadow-utils.js"></script>
</head>
<body>

<p>`dir=rtl` on the &lt;slot&gt;, paragraph in the light tree</p>
<div id="host"><p>اختبر.</p></div>
<p id="result">The HTML direction / computed CSS `direction` value for the paragraph is: </p>

<script type="text/javascript">
let root = host.attachShadow({mode:"open"});
root.innerHTML = `
<slot dir="rtl"></slot>
`;
result.innerHTML += html_direction(host.firstChild) + " / " + getComputedStyle(host.firstChild).direction + '.';
</script>

</body>
</html>
23 changes: 23 additions & 0 deletions html/dom/elements/global-attributes/dir-shadow-05-ref.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>[dir] and shadow slots: dir=auto on the slot, paragraph in the light tree</title>
<link rel="author" title="Eric Meyer" href="mailto:emeyer@igalia.com">
<link rel="help" href="https://html.spec.whatwg.org/multipage/C#the-dir-attribute">
<link rel="help" href="https://github.com/whatwg/html/issues/3699">
<link rel="help" href="https://github.com/whatwg/html/pull/9796">
<style type="text/css">
body {width: 600px;}
div {border: 1px solid gray; margin: 1em;}
div p {width: 50%; border: 1px dotted;}
</style>
</head>
<body>

<p>`dir=auto` on the &lt;slot&gt;, paragraph in the light tree</p>
<div id="host"><p>paragraph.</p></div>
<p id="result">The HTML direction / computed CSS `direction` value for the paragraph is: ltr / ltr.</p>

</body>
</html>
33 changes: 33 additions & 0 deletions html/dom/elements/global-attributes/dir-shadow-05.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>[dir] and shadow slots: dir=auto on the slot, paragraph in the light tree</title>
<link rel="author" title="Eric Meyer" href="mailto:emeyer@igalia.com">
<link rel="help" href="https://html.spec.whatwg.org/multipage/C#the-dir-attribute">
<link rel="help" href="https://github.com/whatwg/html/issues/3699">
<link rel="help" href="https://github.com/whatwg/html/pull/9796">
<link rel="match" href="dir-shadow-05-ref.html">
<style type="text/css">
body {width: 600px;}
div {border: 1px solid gray; margin: 1em;}
div p {width: 50%; border: 1px dotted;}
</style>
<script src="dir-shadow-utils.js"></script>
</head>
<body>

<p>`dir=auto` on the &lt;slot&gt;, paragraph in the light tree</p>
<div id="host"><p>paragraph.</p></div>
<p id="result">The HTML direction / computed CSS `direction` value for the paragraph is: </p>

<script type="text/javascript">
let root = host.attachShadow({mode:"open"});
root.innerHTML = `
<slot dir="auto"></slot>
`;
result.innerHTML += html_direction(host.firstChild) + " / " + getComputedStyle(host.firstChild).direction + '.';
</script>

</body>
</html>
23 changes: 23 additions & 0 deletions html/dom/elements/global-attributes/dir-shadow-06-ref.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>[dir] and shadow slots: dir=auto on the slot, paragraph in the light tree</title>
<link rel="author" title="Eric Meyer" href="mailto:emeyer@igalia.com">
<link rel="help" href="https://html.spec.whatwg.org/multipage/C#the-dir-attribute">
<link rel="help" href="https://github.com/whatwg/html/issues/3699">
<link rel="help" href="https://github.com/whatwg/html/pull/9796">
<style type="text/css">
body {width: 600px;}
div {border: 1px solid gray; margin: 1em;}
div p {width: 50%; border: 1px dotted;}
</style>
</head>
<body>

<p>`dir=auto` on the &lt;slot&gt;, paragraph in the light tree</p>
<div id="host"><p dir="rtl">اختبر.</p></div>
<p id="result">The HTML direction / computed CSS `direction` value for the paragraph is: ltr / rtl.</p>

</body>
</html>
33 changes: 33 additions & 0 deletions html/dom/elements/global-attributes/dir-shadow-06.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>[dir] and shadow slots: dir=auto on the slot, paragraph in the light tree</title>
<link rel="author" title="Eric Meyer" href="mailto:emeyer@igalia.com">
<link rel="help" href="https://html.spec.whatwg.org/multipage/C#the-dir-attribute">
<link rel="help" href="https://github.com/whatwg/html/issues/3699">
<link rel="help" href="https://github.com/whatwg/html/pull/9796">
<link rel="match" href="dir-shadow-06-ref.html">
<style type="text/css">
body {width: 600px;}
div {border: 1px solid gray; margin: 1em;}
div p {width: 50%; border: 1px dotted;}
</style>
<script src="dir-shadow-utils.js"></script>
</head>
<body>

<p>`dir=auto` on the &lt;slot&gt;, paragraph in the light tree</p>
<div id="host"><p>اختبر.</p></div>
<p id="result">The HTML direction / computed CSS `direction` value for the paragraph is: </p>

<script type="text/javascript">
let root = host.attachShadow({mode:"open"});
root.innerHTML = `
<slot dir="auto"></slot>
`;
result.innerHTML += html_direction(host.firstChild) + " / " + getComputedStyle(host.firstChild).direction + '.';
</script>

</body>
</html>
23 changes: 23 additions & 0 deletions html/dom/elements/global-attributes/dir-shadow-07-ref.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>[dir] and shadow slots: dir=ltr on the shadow host, paragraph in the light tree</title>
<link rel="author" title="Eric Meyer" href="mailto:emeyer@igalia.com">
<link rel="help" href="https://html.spec.whatwg.org/multipage/C#the-dir-attribute">
<link rel="help" href="https://github.com/whatwg/html/issues/3699">
<link rel="help" href="https://github.com/whatwg/html/pull/9796">
<style type="text/css">
body {width: 600px;}
div {border: 1px solid gray; margin: 1em;}
div p {width: 50%; border: 1px dotted;}
</style>
</head>
<body>

<p>`dir=ltr` on the shadow host, paragraph in the light tree</p>
<div id="host" dir="ltr"><p>paragraph.</p></div>
<p id="result">The HTML direction / computed CSS `direction` value for the paragraph is: ltr / ltr.</p>

</body>
</html>

0 comments on commit a620952

Please sign in to comment.