mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 16:47:36 +00:00
LibWeb: Skip flakey ref test for now
We currently do not wait for iframes to finish loading before triggering the document's load event, which creates a race condition for any ref tests that include iframes. Until that gets fixed, let's skip the one affected test. See issue #22012.
This commit is contained in:
parent
decc071060
commit
8fe38f04a3
1 changed files with 0 additions and 0 deletions
|
@ -1,38 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<link rel="match" href="reference/css-background-repeat-ref.html" />
|
||||
<style>
|
||||
body {
|
||||
background: cyan;
|
||||
}
|
||||
iframe {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
display: block;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.background {
|
||||
background: white url(assets/smiley.png);
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<iframe src="assets/background-repeat.html"></iframe>
|
||||
<iframe src="assets/background-repeat-x.html"></iframe>
|
||||
<iframe src="assets/background-no-repeat.html"></iframe>
|
||||
<iframe src="assets/background-repeat-y.html"></iframe>
|
||||
|
||||
<div class="background" style="background-repeat: repeat"></div>
|
||||
<div class="background" style="background-repeat: repeat-x"></div>
|
||||
<div class="background" style="background-repeat: no-repeat"></div>
|
||||
<div class="background" style="background-repeat: repeat-y"></div>
|
||||
<div class="background" style="background-repeat: repeat repeat"></div>
|
||||
<div class="background" style="background-repeat: repeat no-repeat"></div>
|
||||
<div class="background" style="background-repeat: no-repeat no-repeat"></div>
|
||||
<div class="background" style="background-repeat: no-repeat repeat"></div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue