mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-09 02:21:53 +00:00
13 lines
407 B
HTML
13 lines
407 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<iframe name="framey" src=""></iframe>
|
|
<iframe name=spices></iframe>
|
|
<script>
|
|
test(() => {
|
|
println(window.framey === window.frames[0]);
|
|
println(window.spices == window.frames[1]);
|
|
|
|
// FIXME: Test with cross-origin iframe?
|
|
// FIXME: Test with iframe that sets window.name -- this changes nothing atm
|
|
});
|
|
</script>
|