mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 05:08:36 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D59820 --HG-- extra : moz-landing-system : lando
18 lines
499 B
HTML
18 lines
499 B
HTML
<!DOCTYPE html>
|
|
<link rel="author" title="Mozilla" href="https://mozilla.org">
|
|
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1606485">
|
|
<style>
|
|
* {
|
|
grid-template-rows: subgrid;
|
|
display: grid;
|
|
overflow: scroll;
|
|
contain: strict;
|
|
}
|
|
</style>
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
let e = document.createElement('s');
|
|
document.documentElement.appendChild(e);
|
|
document.documentElement.getBoundingClientRect() // Update layout
|
|
});
|
|
</script>
|