Revision 246e6e68552a94a85be3810cbe3c82c50fbcca39 authored by Darren Shen on 11 April 2018, 05:55:17 UTC, committed by Chromium WPT Sync on 11 April 2018, 05:55:17 UTC
Test failures:
- scroll-snap-align should always compute to a pair (but we currently
  compute to single keyword if specified).
- scroll-snap-type should compute to as specified (but we currently
  compute to pair).

Bug: 820299
Change-Id: Id38cee967daef8ac5c0658b958d6e74445035a83
Reviewed-on: https://chromium-review.googlesource.com/999078
Reviewed-by: Rune Lillesveen <futhark@chromium.org>
Commit-Queue: Darren Shen <shend@chromium.org>
Cr-Commit-Position: refs/heads/master@{#549778}
1 parent 2e8fa7b
Raw File
text-decoration-visibility-006.xht
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  <title>CSS Test: text-decoration:overline - visibility:hidden 6</title>
  <link rel="author" title="James Hopkins" href="http://idreamincode.co.uk/css21testsuite"/>
<link rel="help" href="https://drafts.csswg.org/css-text-decor/#line-decoration"/>
  <meta name="flags" content=""/>
  <meta name="assert" content="Inline element with 'visibility:hidden' must not prevent a text-decoration value being applied to the line box"/>
  <style type="text/css">
  #test{
  text-decoration:overline;
  font-size:80px;
  background:yellow;
  float:left;
  }
  #test span{
  visibility:hidden;
  }
  </style>
 </head>

 <body>
  <p>To pass, there <strong>must</strong> be an overline spanning the full width of the yellow box.</p>
  <div id="test">
   <span>hidden</span>
   visible
  </div>
 </body>
</html>
back to top