mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
18 lines
326 B
HTML
18 lines
326 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
function runtest() {
|
|
var iframe = document.getElementById("iframe");
|
|
iframe.src = "javascript:'A'";
|
|
iframe.scrollTop;
|
|
iframe.src = "javascript:''";
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="runtest()">
|
|
<iframe id="iframe" style="width:1px;height:1px;"></iframe>
|
|
</body>
|
|
</html>
|
|
|