Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement synchronous about:blank loading. #13996

Merged
merged 6 commits into from Dec 1, 2016
Prev

Make some iframe reftests more robust.

  • Loading branch information
Ms2ger committed Nov 30, 2016
commit 6075d0eb03755336262330aaecfb231968a95189
@@ -1,14 +1,6 @@
<html class="reftest-wait">
<link rel=match href=overflow_ref.html>
<body>
<iframe src="data:text/html,%3Cdiv%20style%3D%22background%3Agreen%3B%20width%3A%20200px%3B%20height%3A%20200px%3B%22%3E%3C%2Fdiv%3E"
style="display: block; width: 108px; height: 108px; border: none">
</iframe>
<script type="text/javascript">
window.onload = function() {
document.documentElement.classList.remove("reftest-wait");
}
</script>
</div>
</body>
</html>
<iframe src="data:text/html,%3Cdiv%20style%3D%22background%3Agreen%3B%20width%3A%20200px%3B%20height%3A%20200px%3B%22%3E%3C%2Fdiv%3E"
style="display: block; width: 108px; height: 108px; border: none"
onload="document.documentElement.classList.remove('reftest-wait')">
</iframe>
@@ -1,4 +1,5 @@
<!DOCTYPE html>
<html class=reftest-wait>
<link rel=match href=stacking_context_ref.html>
<style>
iframe {
@@ -11,4 +12,6 @@
transform: translateX(0px); /* form a stacking context */
}
</style>
<iframe src="data:text/html,%3Cspan%3EJust%20a%20simple%20little%20iframe.%3C%2Fspan%3E">
<iframe src="data:text/html,%3Cspan%3EJust%20a%20simple%20little%20iframe.%3C%2Fspan%3E"
onload="document.documentElement.classList.remove('reftest-wait')">
</iframe>
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.