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
- 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"
<pre id="monitor"></pre>
<script>
function doTest() {
  var monitor = document.getElementById("monitor");
  var html = document.documentElement;
  var results;
  try {
    results = "return: " + html.matches("[test!='']:sizzle") + "\n";
  } catch (e) {
    results = "throws: " + e + "\n";
  }
  monitor.appendChild(document.createTextNode(results));
  is(results.slice(0, 6), "throws", "looking for an exception");
}
SimpleTest.runTestExpectingConsoleMessages(doTest, [{
  forbid: true,
  message: /An invalid or illegal string was specified/
}]);
</script>
</body>
</html>