<html>
<head>
<title>inline marquee causes crashes</title>
</head>
<body>
<div style="opacity: 0.9;">
<marquee style="opacity: 0.9; display: inline;">No crash means PASS</marquee>
</div>
</body>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
// Wait one frame to let the marquee tag settle.
window.requestAnimationFrame(function() {
testRunner.notifyDone()
});
}
</script>
</html>