
This CL has no behavior changes. Bug: 829695 Change-Id: I65285444001e79f1905fcaa4ae11e064f73049a2 Reviewed-on: https://chromium-review.googlesource.com/1006567 Reviewed-by: Quinten Yearsley <qyearsley@chromium.org> Commit-Queue: Kent Tamura <tkent@chromium.org> Cr-Commit-Position: refs/heads/master@{#549995}
26 lines
651 B
HTML
26 lines
651 B
HTML
<html>
|
|
<head>
|
|
<style> #error { display: none; } </style>
|
|
<script>
|
|
function showErrorMsg()
|
|
{
|
|
document.getElementById('error').style.display = 'block';
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="showErrorMsg()">
|
|
|
|
<p>TEST: Video should have controls when scripting is disabled.</p>
|
|
|
|
<video
|
|
src="http://movies.apple.com/movies/us/apple/ipoditunes/2007/touch/ads/apple_ipodtouch_touch_r640-9cie.mov">
|
|
</video>
|
|
|
|
<noscript><p>Scripting is DISABLED.</p></noscript>
|
|
|
|
<p id=error>ERROR: JavaScript must be disabled for this test.</p>
|
|
|
|
|
|
</body>
|
|
</html> |