Update web-platform-tests to revision fe78f2a1ad48c1e0132634e957369d8d674e4258

This commit is contained in:
WPT Sync Bot 2019-02-04 21:07:46 -05:00
parent 871fe9306f
commit f9b7afc45e
59 changed files with 1352 additions and 82 deletions

View file

@ -0,0 +1,28 @@
<!doctype html>
<html>
<head>
<title>Chrome crash with inline </title>
<link rel="help" href="https://www.w3.org/TR/css-position-3/#def-cb">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=928224">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>test(()=>{})</script>
<style>
a {
position: relative;
}
a:before {
content: "foo";
position: absolute;
background: green;
}
</style>
</head>
<body>
<div>
<li>
<a href="dummy">success if does not crash</a>
</li>
</div>
</body>
</html>