blob: 4ef84a04f923e35792062be35c4e9f5cb2878b3b [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script src="../../../resources/js-test.js"></script>
<style>
.testDiv {border-inline-start: 5px solid green; border-inline-end: 5px solid red; }
</style>
</head>
<body>
<p id="description"></p>
<div id="console"></div>
<div id="result"></div>
<div id="test" dir="auto" class="testDiv"></div>
<script>
description('Test that directionality is re-evaluated when an element with dir=auto set, gets a new node before the node that was used to determine its directionality.');
var el = document.getElementById("test");
shouldBe("document.defaultView.getComputedStyle(el, null).getPropertyValue('border-right-color')", "'rgb(255, 0, 0)'");
var child1 = document.createElement("div");
child1.innerHTML = "מקור השם עברית";
el.appendChild(child1);
shouldBe("document.defaultView.getComputedStyle(el, null).getPropertyValue('border-right-color')", "'rgb(0, 128, 0)'");
var child2 = document.createElement("div");
child2.innerHTML = "test";
el.insertBefore(child2, child1);
shouldBe("document.defaultView.getComputedStyle(el, null).getPropertyValue('border-right-color')", "'rgb(255, 0, 0)'");
el.removeChild(child2);
shouldBe("document.defaultView.getComputedStyle(el, null).getPropertyValue('border-right-color')", "'rgb(0, 128, 0)'");
el.style.display = "none";
</script>
</body>
</html>