mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 23:20:02 +00:00
14 lines
524 B
HTML
14 lines
524 B
HTML
|
<div class="iframes-order">
|
||
|
<p>Lorem ipsum dolor</p>
|
||
|
<div id="iframes-order-target"></div>
|
||
|
<p>Lorem ipsum dolor</p>
|
||
|
<script>
|
||
|
// Can't use document.write here, as this fixture will be
|
||
|
// included after the document was fully loaded
|
||
|
var target = document.getElementById("iframes-order-target");
|
||
|
var iframe = document.createElement("iframe");
|
||
|
iframe.src = jasmine.getFixtures().fixturesPath + "/iframes/inc.html";
|
||
|
target.appendChild(iframe);
|
||
|
</script>
|
||
|
</div>
|