Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(587)

Side by Side Diff: content/test/data/gpu/pixel_background.html

Issue 2112603003: Add pixel test for solid color backgrounds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <meta name="viewport" content="initial-scale=1"> 3 <meta name="viewport" content="initial-scale=1">
4 <title>Basic Rasterization Test: Blue Box over Black Background</title> 4 <title>Basic Rasterization Test: Blue Box over Black Background</title>
5 <style type="text/css"> 5 <style type="text/css">
6 body { 6 body {
7 margin: 0px; 7 margin: 0px;
8 padding: 0px; 8 padding: 0px;
9 background-color: white; 9 background-color: green;
10 } 10 }
11 #container { 11 #container {
12 position: relative; 12 position: relative;
13 margin: 10px; 13 margin: 10px;
14 width: 200px; 14 width: 200px;
15 height: 200px; 15 height: 200px;
16 background-color: black; 16 background-color: black;
17 } 17 }
18 #blue_box { 18 #blue_box {
19 position: relative; 19 position: relative;
(...skipping 24 matching lines...) Expand all
44 } 44 }
45 </script> 45 </script>
46 </head> 46 </head>
47 47
48 <body onload="main()"> 48 <body onload="main()">
49 <div id="container"> 49 <div id="container">
50 <div id="blue_box"></div> 50 <div id="blue_box"></div>
51 </div> 51 </div>
52 </body> 52 </body>
53 </html> 53 </html>
OLDNEW
« no previous file with comments | « no previous file | content/test/gpu/gpu_tests/pixel_expectations.py » ('j') | content/test/gpu/gpu_tests/pixel_expectations.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698