aria-notify-iframe-test.html (340B)
1 <!DOCTYPE html> 2 <script> 3 'use strict'; 4 5 window.onload = function() { 6 let result = { }; 7 8 if (document.ariaNotify) { 9 result.supportsAriaNotify = true; 10 result.allowsFeature = document.featurePolicy?.allowsFeature('aria-notify'); 11 } else { 12 result.supportsAriaNotify = false; 13 } 14 15 parent.postMessage(result, '*'); 16 } 17 </script>