blob: 96c2089d6566b370f7e65d1455e202933ea80436 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE html>
<title>Compatibility Test Reference</title>
<style>
#square {
height: 100px;
width: 100px;
background-image: linear-gradient(to bottom, orange, blue);
}
</style>
<p>You should see a square, orange at the top, blue at the bottom.</p>
<div id="square"></div>
|