All pastes #2091155 Raw Edit

Untitled

public text v1 · immutable
#2091155 ·published 2011-10-18 19:22 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);
}

</script>
<body onload="">
<button onclick="navigateFrames()">Navigate Frames</button>
<button onclick="history.go(-2)">Go Back</button>
<iframe id='frame1' src='http://www.webkit.org'></iframe>
<iframe id='frame2' src='data:text/html,frame2'></iframe>
</body>