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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/webvr/idlharness.html

Issue 2747373002: Update WebVR API based on prerelease 1.1 except window and navigator interface (Closed)
Patch Set: Update wpt test Created 3 years, 9 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/external/wpt/webvr/idlharness-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/external/wpt/webvr/idlharness.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/webvr/idlharness.html b/third_party/WebKit/LayoutTests/external/wpt/webvr/idlharness.html
index 77716df9bac229f957a5791f7a753e2abab1f485..f7129ac09df3cccde849666dfac7985bb3ca64a7 100644
--- a/third_party/WebKit/LayoutTests/external/wpt/webvr/idlharness.html
+++ b/third_party/WebKit/LayoutTests/external/wpt/webvr/idlharness.html
@@ -111,7 +111,7 @@ interface VRDisplay : EventTarget {
* If the number of values in the leftBounds/rightBounds arrays is not 0 or 4 for any of the passed layers the promise is rejected
* If the source of any of the layers is not present (null), the promise is rejected.
*/
- Promise<void> requestPresent(sequence<VRLayer> layers);
+ Promise<void> requestPresent(sequence<VRLayerInit> layers);
/**
* Stops presenting to the VRDisplay.
@@ -121,7 +121,7 @@ interface VRDisplay : EventTarget {
/**
* Get the layers currently being presented.
*/
- sequence<VRLayer> getLayers();
+ sequence<VRLayerInit> getLayers();
/**
* The VRLayer provided to the VRDisplay will be captured and presented
@@ -135,7 +135,7 @@ interface VRDisplay : EventTarget {
typedef (HTMLCanvasElement or
OffscreenCanvas) VRSource;
-dictionary VRLayer {
+dictionary VRLayerInit {
VRSource? source = null;
sequence<float> leftBounds = [];
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/external/wpt/webvr/idlharness-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698