mirror of
https://github.com/servo/servo
synced 2026-05-13 10:27:03 +02:00
29 lines
556 B
HTML
29 lines
556 B
HTML
<!DOCTYPE html>
|
|
<meta charset=utf-8>
|
|
<title>dialog element centered frame</title>
|
|
<style>
|
|
html {
|
|
writing-mode: {{GET[html-writing-mode]}}
|
|
}
|
|
|
|
#container {
|
|
writing-mode: {{GET[container-writing-mode]}}
|
|
}
|
|
|
|
dialog {
|
|
writing-mode: {{GET[dialog-writing-mode]}};
|
|
border: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
|
|
<div id="container">
|
|
<dialog style="width: 20px; height: 10px;">X</dialog> <!-- sync width and height with centering.html -->
|
|
</div>
|
|
|
|
<script>
|
|
"use strict";
|
|
document.querySelector("dialog").showModal();
|
|
</script>
|