This repository was archived by the owner on Apr 11, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -2724,6 +2724,15 @@ var tests = [
27242724 [ 'w3c' , 'http://www.w3.org/TR/dom/#mutation-observers' ] ,
27252725 [ 'mdn' , '/Web/API/MutationObserver' ]
27262726 ]
2727+ } , {
2728+ id : 'intersectionObserver' ,
2729+ name : 'Intersection Observer' ,
2730+ value : { maximum : 1 , award : { PREFIX : 1 } } ,
2731+ status : 'experimental' ,
2732+ urls : [
2733+ [ 'w3c' , 'https://wicg.github.io/IntersectionObserver/' ] ,
2734+ [ 'mdn' , '/Web/API/Intersection_Observer_API' ]
2735+ ]
27272736 } , {
27282737 id : 'url' ,
27292738 name : 'URL API' ,
Original file line number Diff line number Diff line change @@ -3776,6 +3776,16 @@ Test9 = (function () {
37763776 } ,
37773777
37783778
3779+ /* intersection observer */
3780+
3781+ function ( results ) {
3782+ results . addItem ( {
3783+ key : 'scripting.intersectionObserver' ,
3784+ passed : 'IntersectionObserver' in window ? YES : 'WebKitIntersectionObserver' in window || 'MozIntersectionObserver' in window || 'msIntersectionObserver' in window ? YES | PREFIX : NO
3785+ } ) ;
3786+ } ,
3787+
3788+
37793789 /* url api */
37803790
37813791 function ( results ) {
You can’t perform that action at this time.
0 commit comments