mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-22 12:23:08 +09:00
11 lines
245 B
HTML
11 lines
245 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
div:not(:lang(foo)) { display: none; }
|
|
</style>
|
|
</head>
|
|
<body onload="document.body.offsetWidth; document.body.lang = 'foo'">
|
|
<div>This text should be visible</div>
|
|
</body>
|
|
</html>
|