1
0
Fork 0
firefox/layout/reftests/ib-split/insert-into-split-inline-17.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

20 lines
502 B
HTML

<!DOCTYPE html>
<style>
#target { color: red; }
#target.green { color: green; }
</style>
<span id="target">
<div></div>
First <span id="next"> Third</span>
<div></div>
</span>
<script>
onload = function() {
var s = document.querySelector("#target");
window.color = getComputedStyle(s).color;
s.className = "green";
window.newColor = getComputedStyle(s).color;
s.insertBefore(document.createTextNode("Second"),
s.querySelector("#next"));
}
</script>