You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<meta name="assert" content="Check if 'background-size' is 'auto' and 'background-repeat' is 'repeat', that the background image is shown at its intrinsic size (98px wide by 99px tall in this test) and repeats in both horizontal and vertical to cover the background painting area (the same as background positioning area in this test).">
<style>
div {
background-color: red;
background-image: url(support/cat.png); /* 98px wide by 99px tall */
background-repeat: repeat; /* default */
background-size: auto; /* default */
height: 198px;
width: 196px;
/*
Background positioning area is 196px wide by 198px tall.
So, the image should be repeated twice in horizontal and vertical.
*/
}
</style>
</head>
<body>
<p>Test passes if there is 2 rows of 2 cats and if there is <strong>no partially</strong> displayed cat and <strong>no red</strong>.</p>