testing/web-platform/tests/css/css-masking/mask-image/mask-size-percent-percent-stretch-ref.html
Bug 1977313 - Fix failing custom search engines related UI tests r=aaronmt
The UI test started to fail after this [[
https://phabricator.services.mozilla.com/D252233 | change ]] landed.
To fix the 2 UI tests I've removed the snackbar assertions.
Both tests successfuly passed 10x on Firebase ✅
Differential Revision:
https://phabricator.services.mozilla.com/D257244
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Masking: mask-size: mask layer size</title>
<link rel="author" title="Astley Chen" href="mailto:aschen@mozilla.com">
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
<style type="text/css">
div {
width: 60px;
height: 120px;
}
#outer {
border: 10px solid black;
}
#inner {
height: 60px;
background-color: purple;
}
</style>
</head>
<body>
<div id="outer">
<div id="inner"></div>
</div>
</body>
</html>