File tree Expand file tree Collapse file tree 2 files changed +35
-2
lines changed
Expand file tree Collapse file tree 2 files changed +35
-2
lines changed Original file line number Diff line number Diff line change 824824 }
825825 }
826826 },
827+ "navigate" : {
828+ "__compat" : {
829+ "spec_url" : " https://notifications.spec.whatwg.org/#dom-notification-navigate" ,
830+ "support" : {
831+ "chrome" : {
832+ "version_added" : false
833+ },
834+ "chrome_android" : " mirror" ,
835+ "edge" : " mirror" ,
836+ "firefox" : {
837+ "version_added" : false
838+ },
839+ "firefox_android" : " mirror" ,
840+ "oculus" : " mirror" ,
841+ "opera" : " mirror" ,
842+ "opera_android" : " mirror" ,
843+ "safari" : {
844+ "version_added" : " 18.4"
845+ },
846+ "safari_ios" : " mirror" ,
847+ "samsunginternet_android" : " mirror" ,
848+ "webview_android" : " mirror" ,
849+ "webview_ios" : {
850+ "version_added" : false
851+ }
852+ },
853+ "status" : {
854+ "experimental" : true ,
855+ "standard_track" : true ,
856+ "deprecated" : false
857+ }
858+ }
859+ },
827860 "permission_static" : {
828861 "__compat" : {
829862 "description" : " `permission` static property" ,
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ describe('walk()', () => {
2929
3030 it ( 'should walk a single tree' , ( ) => {
3131 const results = Array . from ( walk ( 'api.Notification' ) ) ;
32- assert . equal ( results . length , 28 ) ;
32+ assert . equal ( results . length , 29 ) ;
3333 assert . equal ( results [ 0 ] . path , 'api.Notification' ) ;
3434 assert . equal ( results [ 1 ] . path , 'api.Notification.Notification' ) ;
3535 } ) ;
@@ -38,7 +38,7 @@ describe('walk()', () => {
3838 const results = Array . from (
3939 walk ( [ 'api.Notification' , 'css.properties.color' ] ) ,
4040 ) ;
41- assert . equal ( results . length , 29 ) ;
41+ assert . equal ( results . length , 30 ) ;
4242 assert . equal ( results [ 0 ] . path , 'api.Notification' ) ;
4343 assert . equal ( results [ results . length - 1 ] . path , 'css.properties.color' ) ;
4444 } ) ;
You can’t perform that action at this time.
0 commit comments