All pastes #2091159 Raw Edit

Untitled

public text v1 · immutable
#2091159 ·published 2011-10-18 19:27 UTC
rendered paste body
<!DOCTYPE html>
<script>
function navigateFrames() {
    setTimeout(function() {
        document.getElementById('frame1').src = 'data:text/html,frame1navigated'; 
        document.getElementById('frame2').src = 'data:text/html,frame2navigated'; 
    }, 0);
}

layoutTestController.waitUntilDone();

function runTest() {
    setTimeout(navigateFrames, 1000);
    setTimeout(function() { history.go(-2); }, 2000);
}
</script>
<body onload="runTest()">
<button onclick="navigateFrames()">Navigate Frames</button>
<button onclick="history.go(-2)">Go Back</button>
<iframe id='frame1' src='data:text/html,frame1'></iframe>
<iframe id='frame2' src='data:text/html,frame2'></iframe>
</body>