mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
c2098e4465
webgl-color-alpha-test fails to render the image correctly since switching on 24-bit rendering, presumably due to async image decoding. Instead, just replace the pure black 256^2 image with a page that renders the same using a div.
10 lines
159 B
HTML
10 lines
159 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
</head>
|
|
<body>
|
|
<div style="width: 256px; height: 256px; background-color: black"></div>
|
|
</body>
|
|
</html>
|