Title: [217842] trunk/Websites/webkit.org
Revision
217842
Author
[email protected]
Date
2017-06-06 11:11:21 -0700 (Tue, 06 Jun 2017)

Log Message

Add a WebGPU test to the experimental features test page
https://bugs.webkit.org/show_bug.cgi?id=172953

Reviewed by Darin Adler.

* experimental-features.html:

Modified Paths

Diff

Modified: trunk/Websites/webkit.org/ChangeLog (217841 => 217842)


--- trunk/Websites/webkit.org/ChangeLog	2017-06-06 18:11:19 UTC (rev 217841)
+++ trunk/Websites/webkit.org/ChangeLog	2017-06-06 18:11:21 UTC (rev 217842)
@@ -1,5 +1,14 @@
 2017-06-06  Joseph Pecoraro  <[email protected]>
 
+        Add a WebGPU test to the experimental features test page
+        https://bugs.webkit.org/show_bug.cgi?id=172953
+
+        Reviewed by Darin Adler.
+
+        * experimental-features.html:
+
+2017-06-06  Joseph Pecoraro  <[email protected]>
+
         Move Resource Timing / User Timing from experimental features into main preferences
         https://bugs.webkit.org/show_bug.cgi?id=172950
 

Modified: trunk/Websites/webkit.org/experimental-features.html (217841 => 217842)


--- trunk/Websites/webkit.org/experimental-features.html	2017-06-06 18:11:19 UTC (rev 217841)
+++ trunk/Websites/webkit.org/experimental-features.html	2017-06-06 18:11:21 UTC (rev 217842)
@@ -99,6 +99,10 @@
     return canvas.getContext("webgl2");
 }
 
+function testWebGPU() {
+    return window.WebGPURenderingContext;
+}
+
 function testWebRTC() {
     return window.RTCPeerConnection;
 }
@@ -130,6 +134,7 @@
         <div class="test" id="VariationFonts"><p>Variation Fonts</p></div>
         <div class="test" id="WebAnimations"><p>Web Animations</p></div>
         <div class="test" id="WebGL2"><p>WebGL 2.0</p></div>
+        <div class="test" id="WebGPU"><p>WebGPU</p></div>
         <div class="test" id="WebRTC"><p>WebRTC</p></div>
     </div>
 </body>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to