wpt / css / css-syntax / missing-semicolon.html

Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-syntax/missing-semicolon.html

<!DOCTYPE html>
<html>
  <head>
    <title>Missing semicolon at end of block should not keep declaration from being applied</title>
    <link rel="author" title="Steinar H. Gunderson" href="mailto:sesse@chromium.org">
    <link rel="help" href="https://crbug.com/1413840">
    <link rel="match" href="missing-semicolon-ref.html">
    <link rel="stylesheet" href="support/missing-semicolon.css">
  </head>
  <body>
    <div class="c">Test passes if this paragraph is green.</div>
  </body>
</html>

/css/css-syntax/missing-semicolon-ref.html

<!DOCTYPE html>
<html>
  <head>
    <title>Missing semicolon at end of block should not keep declaration from being applied</title>
  </head>
  <body>
    <div style="color: green;">Test passes if this paragraph is green.</div>
  </body>
</html>