blob: 9dcab0e32a4e884e6b7748e6ddf06531f1f2a68f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<!DOCTYPE html>
<html class="reftest-wait">
<iframe id="x"
src="data:text/html;charset=utf-8,%3Cdiv%20id%3D%22a%22%3Eaaa"></iframe>
<script>
window.onload = function() {
window.frames[0].document.getElementById("a").setAttribute("style",
'-moz-transition-property: color;' +
'-moz-transition-duration: 10s;' +
'transition-property: color;' +
'transition-duration: 10s; ' +
'color: red;');
// And start the transition
window.frames[0].document.documentElement.getBoundingClientRect();
// Now kill off the presshell
var frame = document.getElementById("x");
frame.style.display = "none";
document.documentElement.getBoundingClientRect();
// And wait for the refresh driver to fire
setTimeout(function() {
document.documentElement.className = "";
}, 100);
}
</script>
</html>
|