Revision bb80e224f4d801dc6bd21b6e330cce5fe3fa8055 authored by Henrik Skupin on 24 April 2018, 21:19:20 UTC, committed by jgraham on 01 May 2018, 09:56:37 UTC
After closing the last top-level browsing context, the session
will be closed too.

bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1455282
gecko-commit: e60e61507ef4a95ab2456d13126f6fef9086109a
gecko-integration-branch: autoland
gecko-reviewers: ato
1 parent 8b9f853
Raw File
syntax-003.xml
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <link rel="author" title="Anne van Kesteren" href="http://annevankesteren.nl/"/>
  <link rel="author" title="Opera Software ASA" href="http://opera.com/"/>
  <link rel="help" href="http://www.w3.org/TR/css-namespaces-3/#syntax"/>
  <link rel="match" href="reftest/ref-lime-5.xml"/>
  <title>CSS Namespaces Test Suite: @namespace default namespace syntax</title>
  <style>
   *|test { background:red }
  </style>
  <style>
   @namespace url(test-a);
   test { background:lime }
  </style>
  <style>
   @namespace url('test-b');
   test { background:lime }
  </style>
  <style>
   @namespace url("test-c");
   test { background:lime }
  </style>
  <style>
   @namespace 'test-d';
   test { background:lime }
  </style>
  <style>
   @namespace "test-e";
   test { background:lime }
  </style>
 </head>
 <body>
  <p><test xmlns="test-a">This sentence should have a green background.</test></p>
  <p><test xmlns="test-b">This sentence should have a green background.</test></p>
  <p><test xmlns="test-c">This sentence should have a green background.</test></p>
  <p><test xmlns="test-d">This sentence should have a green background.</test></p>
  <p><test xmlns="test-e">This sentence should have a green background.</test></p>
 </body>
</html>
back to top