Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1081)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgba4444.html

Issue 1601093008: Remove duplicated WebGL layout tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <script src="../../../resources/js-test.js"></script>
6 <script src="resources/webgl-test.js"></script>
7 <script src="resources/webgl-test-utils.js"></script>
8 <script src="resources/tex-image-and-sub-image-2d-with-video.js"></script>
9 <script>
10 function testPrologue(gl) {
11 return true;
12 }
13 </script>
14 </head>
15 <body onload='generateTest("RGBA", "UNSIGNED_SHORT_4_4_4_4", testPrologue)()'>
16 <canvas id="example" width="32px" height="32px"></canvas>
17 <div id="description"></div>
18 <div id="console"></div>
19 <video width="640" height="228" id="vid" controls>
20 <source src="resources/red-green.mp4" type='video/mp4; codecs="avc1.42E01E, m p4a.40.2"' />
21 <source src="resources/red-green.webmvp8.webm" type='video/webm; codecs="vp8, vorbis"' />
22 <source src="resources/red-green.theora.ogv" type='video/ogg; codecs="theora, vorbis"' />
23 </video>
24 </body>
25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698