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

Unified Diff: third_party/WebKit/LayoutTests/virtual/threaded/fast/idleToBlob/OffscreenCanvas-convertToBlob-webgl-main.html

Issue 2602253002: Fixed WebglRenderingContextBase toImageData (Closed)
Patch Set: fix error Created 3 years, 12 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/virtual/threaded/fast/idleToBlob/OffscreenCanvas-convertToBlob-webgl-main.html
diff --git a/third_party/WebKit/LayoutTests/virtual/threaded/fast/idleToBlob/OffscreenCanvas-convertToBlob-webgl-main.html b/third_party/WebKit/LayoutTests/virtual/threaded/fast/idleToBlob/OffscreenCanvas-convertToBlob-webgl-main.html
index aeddaf4a5aad639e1373d69110250c8f8cb05520..69ec02a125df90cb97a3b68907f4c2dbc785c4e3 100644
--- a/third_party/WebKit/LayoutTests/virtual/threaded/fast/idleToBlob/OffscreenCanvas-convertToBlob-webgl-main.html
+++ b/third_party/WebKit/LayoutTests/virtual/threaded/fast/idleToBlob/OffscreenCanvas-convertToBlob-webgl-main.html
@@ -1,18 +1,30 @@
<img id="png"/>
+<img id="jpeg-high"/>
+<img id="jpeg-low"/>
+<img id="webp-high"/>
+<img id="webp-low"/>
<script type="text/javascript">
if (window.testRunner) {
testRunner.waitUntilDone();
}
-// TODO: Add more image types to this test once the toImageData() for webgl
-// is completed. See crbug.com/657531.
var pngImage = document.getElementById('png');
+var jpegImageHigh = document.getElementById('jpeg-high');
+var jpegImageLow = document.getElementById('jpeg-low');
+var webpImageHigh = document.getElementById('webp-high');
+var webpImageLow = document.getElementById('webp-low');
+var numTestCount = 5;
function imageLoaded() {
- if (window.testRunner) {
+ numTestCount--;
+ if (numTestCount == 0 && window.testRunner) {
window.testRunner.notifyDone();
}
}
pngImage.addEventListener('load', imageLoaded);
+jpegImageHigh.addEventListener('load', imageLoaded);
+jpegImageLow.addEventListener('load', imageLoaded);
+webpImageHigh.addEventListener('load', imageLoaded);
+webpImageLow.addEventListener('load', imageLoaded);
var offCanvas = new OffscreenCanvas(50, 50);
var gl = offCanvas.getContext('webgl');
@@ -24,5 +36,25 @@ offCanvas.convertToBlob()
pngImage.src = URL.createObjectURL(blob);
});
+offCanvas.convertToBlob({type: "image/jpeg"})
+ .then(function(blob) {
+ jpegImageHigh.src = URL.createObjectURL(blob);
+ });
+
+offCanvas.convertToBlob({type: "image/jpeg", quality: 0.2})
+ .then(function(blob) {
+ jpegImageLow.src = URL.createObjectURL(blob);
+ });
+
+offCanvas.convertToBlob({type: "image/webp"})
+ .then(function(blob) {
+ webpImageHigh.src = URL.createObjectURL(blob);
+ });
+
+offCanvas.convertToBlob({type: "image/webp", quality: 0.2})
+ .then(function(blob) {
+ webpImageLow.src = URL.createObjectURL(blob);
+ });
+
</script>

Powered by Google App Engine
This is Rietveld 408576698