Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-writing-modes/bidi-dynamic-iframe-001.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel="match" href="bidi-dynamic-iframe-001-ref.html">
<iframe srcdoc="בְּרֵאשִׁית בָּרָא אֱלֹהִים אֵת הַשָּׁמַיִם וְאֵת הָאָֽרֶץ׃"></iframe>
<p id="target"></p>
<script>
onload = function() {
let frame = document.querySelector("iframe");
let target = document.getElementById("target");
let doc = frame.contentDocument;
let bidiString = frame.getAttribute("srcdoc");
let node = doc.createTextNode("");
doc.body.appendChild(node);
node.appendData(bidiString);
target.appendChild(node);
frame.remove();
}
</script>