mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
250 B
HTML
20 lines
250 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<script>
|
||
|
|
||
|
function b() {
|
||
|
try { sset("u"); } catch(e) { }
|
||
|
try { [0].map(b); } catch(e) { }
|
||
|
}
|
||
|
|
||
|
var sset = document.documentElement.style.__lookupSetter__("textIndent");
|
||
|
b();
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body></body>
|
||
|
</html>
|
||
|
|