Skip to content

Commit

Permalink
Merge pull request #257 from LeaVerou/webxr-dom-overlays
Browse files Browse the repository at this point in the history
Added WebXR DOM Overlays
  • Loading branch information
SebastianZ authored Sep 7, 2024
2 parents c4d3a2c + f3741b3 commit 113c4b7
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
3 changes: 3 additions & 0 deletions csstest.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ var devLinkFormat = function (params) {
return 'https://drafts.css-houdini.org/' + params.dev;
case 'github':
return 'https://w3c.github.io/' + params.dev;
case 'iwwg':
// The Immersive Web Working Group
return 'https://immersive-web.github.io/' + params.dev;
case 'svgwg':
// SVG Working Group Editor Drafts
return 'https://svgwg.org/' + params.dev;
Expand Down
2 changes: 2 additions & 0 deletions tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ import svg2Text from './tests/svg2-text.js';
import webAnimations1 from './tests/web-animations-1.js';
import webAnimations2 from './tests/web-animations-2.js';
import webVtt from './tests/webvtt.js';
import webxrDomOverlays1 from './tests/webxr-dom-overlays-1.js';


export default {
Expand Down Expand Up @@ -305,4 +306,5 @@ export default {
'web-animations-1': webAnimations1,
'web-animations-2': webAnimations2,
webvtt: webVtt,
'webxr-dom-overlays-1': webxrDomOverlays1,
};
20 changes: 20 additions & 0 deletions tests/webxr-dom-overlays-1.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
export default {
title: 'WebXR DOM Overlays Module',
links: {
tr: 'webxr-dom-overlays-1',
dev: 'dom-overlays',
devtype: 'iwwg',
},
status: {
stability: 'experimental',
},
selectors: {
':xr-overlay': {
links: {
tr: '#css-pseudo-class',
dev: '#css-pseudo-class',
},
tests: [':xr-overlay'],
},
},
};

0 comments on commit 113c4b7

Please sign in to comment.