forked from web-platform-tests/wpt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tests for directionality and shadow DOM (web-platform-tests#29820)
Tests for :dir() and shadow DOM for issue web-platform-tests#3699 Co-authored-by: Brian Kardell <[email protected]> Co-authored-by: L. David Baron <[email protected]>
- Loading branch information
1 parent
7d6be0a
commit a620952
Showing
83 changed files
with
2,258 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
html/dom/elements/global-attributes/dir-shadow-01-ref.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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:[email protected]"> | ||
<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 <slot>, 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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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:[email protected]"> | ||
<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 <slot>, 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
23
html/dom/elements/global-attributes/dir-shadow-02-ref.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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:[email protected]"> | ||
<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 <slot>, 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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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:[email protected]"> | ||
<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 <slot>, 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
23
html/dom/elements/global-attributes/dir-shadow-03-ref.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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:[email protected]"> | ||
<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 <slot>, 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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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:[email protected]"> | ||
<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 <slot>, 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
23
html/dom/elements/global-attributes/dir-shadow-04-ref.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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:[email protected]"> | ||
<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 <slot>, 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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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:[email protected]"> | ||
<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 <slot>, 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
23
html/dom/elements/global-attributes/dir-shadow-05-ref.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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:[email protected]"> | ||
<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 <slot>, 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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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:[email protected]"> | ||
<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 <slot>, 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
23
html/dom/elements/global-attributes/dir-shadow-06-ref.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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:[email protected]"> | ||
<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 <slot>, 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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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:[email protected]"> | ||
<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 <slot>, 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
23
html/dom/elements/global-attributes/dir-shadow-07-ref.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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:[email protected]"> | ||
<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> |
Oops, something went wrong.