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

Side by Side Diff: LayoutTests/fast/css/rgba-custom-text.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <script src="../../fast/js/resources/js-test-pre.js"></script> 2 <script src="../../fast/js/resources/js-test-pre.js"></script>
3 <style> 3 <style>
4 #test { 4 #test {
5 color: rgba(0, 0, 0, 0.2); 5 color: rgba(0, 0, 0, 0.2);
6 } 6 }
7 </style> 7 </style>
8 <div id="test"></div> 8 <div id="test"></div>
9 <script> 9 <script>
10 description("Tests the CSS custom text implementation for rgba(). Note that WebKit internally stores alpha as an 8 bit value, and that 255 * 0.2 = 51 exactl y. So 0.2 is able to be stored with no rounding."); 10 description("Tests the CSS custom text implementation for rgba(). Note that WebKit internally stores alpha as an 8 bit value, and that 255 * 0.2 = 51 exactl y. So 0.2 is able to be stored with no rounding.");
11 shouldBeEqualToString('getComputedStyle(document.getElementById("test"), nul l).color', "rgba(0, 0, 0, 0.2)"); 11 shouldBeEqualToString('getComputedStyle(document.getElementById("test"), nul l).color', "rgba(0, 0, 0, 0.2)");
12 </script> 12 </script>
13 <script src="../../fast/js/resources/js-test-post.js"></script>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/remove-attribute-style.html ('k') | LayoutTests/fast/css/script-tests/TEMPLATE.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698