blob: f613a30c9ebe12f98dd66af1210bf610c04184ce [file] [log] [blame]
<!DOCTYPE html>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<div id=parentid>
<div id=childid>hello</div>
</div>
<script>
async_test(t => {
parentid.addEventListener('beforematch', t.step_func_done(() => {}));
testRunner.findString('hello', []);
}, `Tests that the beforematch event bubbles when using find-in-page.`);
</script>