https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 3a5695ca77ac85b8c8e65de17faaa20dccf2f98e authored by Marijn Kruisselbrink on 21 March 2018, 22:30:54 UTC
[Blobs] Correctly set mimetype of blob in FetchDataLoader.
Tip revision: 3a5695c
important-prop.html
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>CSS Cascade: Important</title>
  <link rel="author" title="David Burns" href="http://www.theautomatedtester.co.uk">
  <link rel="help" href="https://drafts.csswg.org/css-cascade/#importance">
  <link rel="match" href="important-prop-ref.html">
  <meta name="flags" content="">
  <style>
  @keyframes override{
   from, to{background-color: #f00;}
  }

  .square {
    color:#00f;
    animation: override 1s infinite;
    width: 100px;
    height: 100px;
  }
  .green {
    background-color:green !important;
  }
  </style>
</head>
<body>
  <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>

  <div class="square green"></div>

</body>
</html>
back to top