mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
26 lines
452 B
HTML
26 lines
452 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var b = document.createElement('bdi');
|
|
var c = document.createElement('div');
|
|
var d = document.createElement('div');
|
|
|
|
b.appendChild(c);
|
|
c.appendChild(d);
|
|
b.removeChild(c);
|
|
d.appendChild(b);
|
|
document.createElement('div').appendChild(c);
|
|
b.appendChild(document.createElement('div'));
|
|
|
|
b.setAttribute('dir', "auto");
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();"></body>
|
|
</html>
|