mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-28 03:17:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
36
layout/reftests/bidi/dirAuto/1103348-1.html
Normal file
36
layout/reftests/bidi/dirAuto/1103348-1.html
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="reftest-wait">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Dynamic changes and dir=auto</title>
|
||||
</head>
|
||||
<body>
|
||||
<div>Test for elements with dir="auto" whose content changes between directional and neutral</div>
|
||||
<div dir="auto" id="from_ltr_to_ltr">abc</div>
|
||||
<div dir="auto" id="from_ltr_to_rtl">abc</div>
|
||||
<div dir="auto" id="from_ltr_to_neutral">abc</div>
|
||||
<div dir="auto" id="from_rtl_to_ltr">אבג</div>
|
||||
<div dir="auto" id="from_rtl_to_rtl">אבג</div>
|
||||
<div dir="auto" id="from_rtl_to_neutral">אבג</div>
|
||||
<div dir="auto" id="from_neutral_to_ltr">123</div>
|
||||
<div dir="auto" id="from_neutral_to_rtl">123</div>
|
||||
<div dir="auto" id="from_neutral_to_neutral">123</div>
|
||||
<script type="text/javascript">
|
||||
function changeContent()
|
||||
{
|
||||
var directionalTexts = {ltr:"xyz", rtl:"ابج", neutral:"456"};
|
||||
|
||||
for (var dirFrom in directionalTexts) {
|
||||
for (var dirTo in directionalTexts) {
|
||||
var element = document.getElementById("from_" + dirFrom +
|
||||
"_to_" + dirTo);
|
||||
element.textContent = directionalTexts[dirTo];
|
||||
}
|
||||
}
|
||||
document.documentElement.removeAttribute("class");
|
||||
}
|
||||
|
||||
document.addEventListener("MozReftestInvalidate", changeContent, false);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue