mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
20 lines
215 B
HTML
20 lines
215 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
|
|
@page {}
|
|
|
|
</style>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
document.styleSheets[0].cssRules[0].style.paddingLeft = "initial";
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();"></body>
|
|
</html>
|