blob: 6f1093a145abb1457846e90a7febff7fe65044fb [file] [log] [blame]
(async function(testRunner) {
const {page, session, dp} = await testRunner.startHTML(`
<input></input>
`, 'Tests that DOM.markUndoableState does not crash when DOM is disabled.');
await dp.DOM.markUndoableState();
testRunner.log('Did not crash');
testRunner.completeTest();
})