mirror of
https://github.com/servo/servo.git
synced 2025-06-27 02:23:41 +01:00
24 lines
No EOL
693 B
HTML
24 lines
No EOL
693 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>CSS Test: Paragraph element with mix-blend-mode over parent with background image.</title>
|
|
<link href="mitica@adobe.com" rel="author" title="Mihai Tica">
|
|
<style type="text/css">
|
|
div {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-image: url('../support/yellow_square.svg');
|
|
}
|
|
|
|
#blender {
|
|
color: #0F0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if the paragraph text is drawn with green.</p>
|
|
<div>
|
|
<p id="blender">This should be drawn with green.</p>
|
|
</div>
|
|
|
|
|
|
</body></html> |