UNPKG

axe-core

Version:

Accessibility engine for automated Web UI testing

27 lines (26 loc) 414 B
<!doctype html> <html> <head> <title>Test Nest Frame</title> <script src="../../../axe.js"></script> <script> axe._load({ rules: [{ id: 'iframe', selector: 'iframe', any: ['iframe'] }], checks: [{ id: 'iframe', evaluate: function () { return true; } }], messages: {} }); </script> </head> <body> <iframe src="nested1.html" id="level1"></iframe> </body> </html>