0
Files
src/third_party/blink/manual_tests/media-controls-when-javascript-disabled.html
Kent Tamura dc3ed43a93 Move //third_party/WebKit/ManualTests to //third_party/blink/manual_tests
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}
2018-04-12 01:32:10 +00:00

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>