Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'linux' && os_version == '24.04' && arch == 'x86_64' && debug && verify-standalone OR verify-standalone
- Manifest: dom/base/test/mochitest.toml
<!doctype html>
<html>
<!--
-->
<head>
  <meta charset="utf-8">
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" href="/tests/SimpleTest/test.css">
</head>
<body>
<a target="_blank"
<script>
// The use of document.write is deliberate.  We are testing for the
// HTML parser to call the CSS parser once and only once when it
// encounters a new <style> element.
SpecialPowers.wrap(window).docShell.cssErrorReportingEnabled = true;
SimpleTest.runTestExpectingConsoleMessages(
  function () { document.write("<style>qux { foo : bar; }<\/style>") },
  [{ errorMessage: /Unknown property/ }]
);
</script>
</body>
</html>