Source code
Revision control
Copy as Markdown
Other Tools
<!-- Any copyright is dedicated to the Public Domain.
<html>
<head>
  <title>authored sheet test</title>
  <style>
  pre a {
    color: orange;
  }
  </style>
  <script>
    "use strict";
    var style = "data:text/css,a { background-color: seagreen; }";
    var uri = SpecialPowers.Services.io.newURI(style);
    var windowUtils = SpecialPowers.getDOMWindowUtils(window);
    windowUtils.loadSheet(uri, windowUtils.AUTHOR_SHEET);
  </script>
</head>
<body>
  <input type=text placeholder=test></input>
  <input type=color></input>
  <input type=range></input>
  <input type=number></input>
  <progress></progress>
  <blockquote type=cite>
    <pre _moz_quote=true>
      inspect <a href="foo">user agent</a> styles
    </pre>
  </blockquote>
</body>
</html>