blob: 520a37fd22dab137131e0a1b481b02d7638d39a1 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../../http/tests/inspector/resources/inspector-test.js"></script>
<script src="resources/recording-utilities.js"></script>
<script src="resources/shaderProgram-utilities-webgl.js"></script>
<script id="vertex-shader" type="x-shader/x-vertex">
attribute vec4 test;
uniform vec4 testUniform;
void main(void) {
gl_Position = test + testUniform;
}
</script>
<script id="fragment-shader" type="x-shader/x-fragment">
precision mediump float;
void main(void) {
gl_FragColor = vec4(1.0, 1.0, 1.0, 1.0);
}
</script>
<script src="resources/recording-webgl.js"></script>
<script>
function test() {
let suite = InspectorTest.createAsyncSuite("Canvas.recordingWebGL");
suite.addTestCase({
name: "Canvas.recordingWebGL.multipleFrames",
description: "Check that recording data is serialized correctly for multiple frames.",
test(resolve, reject) {
startRecording(WI.Canvas.ContextType.WebGL, resolve, reject);
},
timeout: -1,
});
suite.runTestCasesAndFinish();
}
</script>
</head>
<body onload="load()">
<p>Test that CanvasManager is able to record actions made to WebGL canvas contexts.</p>
</body>
</html>