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
ex-calc-expression-001.html
<!doctype html>
<meta charset="utf-8">
<title>CSS Test: Calc expression using multiple ex operands</title>
<link rel="match" href="ex-calc-expression-001-ref.html">
<link rel="help" href="https://drafts.csswg.org/css-values/#funcdef-calc">
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<style>
/*
   This is a regression test for:
     https://github.com/servo/servo/pull/18807
     https://bugzilla.mozilla.org/show_bug.cgi?id=1407092
 */
div {
  width: calc(1ex + 1ex);
  height: calc(1ex + 1ex);
  background: green;
}
</style>
<div></div>
back to top