blob: b0c8d875a86946971f547d4cd01d079e0de65ed3 [file] [log] [blame]
// META: script=/common/utils.js
async_test((t) => {
var popup_window = window.open("resources/echo-critical-hint.py?mismatch=true&token="+token());
assert_not_equals(popup_window, null, "Popup windows not allowed?");
popup_window.addEventListener('load', (e) => {
t.step(()=>{assert_equals(popup_window.document.body.textContent, "1")});
t.done();
});
}, "Critical-CH navigation")