https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 53d7c8f7c348cc8b463b584f94df10600f939fd4 authored by Robert Ma on 16 March 2018, 16:18:07 UTC
Try to fix a WebDriver error
Tip revision: 53d7c8f
view-box-viewbox.html
<!DOCTYPE html>
<title>transform-box: view-box, relative to viewport defined by viewBox</title>
<link rel="match" href="support/greensquare200x200.html">
<link rel="help" href="https://drafts.csswg.org/css-transforms/#transform-box">
<style>
#target {
  transform-box: view-box;
  transform: translate(-50%, -50%);
}
</style>
<p>There should be a green 200x200 rectangle below, and no red.</p>
<svg width="400" height="200" viewBox="0 0 200 200" preserveAspectRatio="xMinYMin">
  <rect width="200" height="200" fill="red"/>
  <rect id="target" x="100" y="100" width="200" height="200" fill="green"/>
</svg>
back to top