Split from #65
This would expose to the web a primitive that's used internally when navigating and when the user presses Esc (or similar), and would make it easier to test. The IDL would look like:
partial interface Document {
Promise<void> exitFullscreen(optional ExitFullscreenOptions options);
};
dictionary ExitFullscreenOptions {
boolean fully = false;
};
Split from #65
This would expose to the web a primitive that's used internally when navigating and when the user presses Esc (or similar), and would make it easier to test. The IDL would look like: