mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
343 B
HTML
20 lines
343 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script>
|
|
|
|
function boom() {
|
|
CSS.supports('');
|
|
|
|
var style = document.createElement("style");
|
|
var tn = document.createTextNode("* { border: var(--b); }");
|
|
style.appendChild(tn);
|
|
document.body.appendChild(style);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();"></body>
|
|
</html>
|