mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
Add iframe tests to their own subdirectory and add another test case that used to trigger a fatal error. The new test case uses the "allow-scripts" sandbox attribute to work around a script task failure caused by the child frame sharing the same script task as the parent.
10 lines
303 B
HTML
10 lines
303 B
HTML
<html>
|
|
<body>
|
|
<div style="margin-top: 20px">
|
|
<iframe src="data:text/html,%3Cspan%3EJust%20a%20simple%20little%20iframe.%3C%2Fspan%3E"
|
|
style="display: block; border: 1px solid black; width: 500px; height: 300px; margin-left: 10px; margin-top: 0px;">
|
|
</iframe>
|
|
</div>
|
|
</body>
|
|
</html>
|