<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
body { margin: 0; } | |
html, body, #result { width: 100%; height: 100%; } | |
</style> | |
<script type="text/javascript"> | |
setTimeout(function() { | |
var result = document.getElementById("result"); | |
result.innerHTML = (result.offsetWidth == window.innerWidth) ? "PASS" : "FAIL"; | |
if (window.testRunner) | |
testRunner.notifyDone(); | |
}, 200); // Have to use timeout because of raise condition caused by WK2 IPC. | |
</script> | |
</head> | |
<body> | |
<div id="result"> | |
</p> | |
</div> | |
</body> | |
</html> |