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

Side by Side Diff: LayoutTests/fast/css/image-value-type.html

Issue 689323002: Remove tests which are only testing getPropertyCSSValue, etc. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <script src="../../resources/js-test.js"></script>
6 <style>
7 div#test {
8 background-image: url(stars.gif);
9 }
10 </style>
11 </head>
12 <body>
13 <script>
14
15 description("Documents that CSS image values are not primitive values anymore.") ;
16
17 var style = document.styleSheets[1].rules[0].style;
18 var imageValue = style.getPropertyCSSValue('background-image');
19
20 shouldBe("imageValue.cssValueType", "CSSValue.CSS_PRIMITIVE_VALUE");
21
22 </script>
23 </body>
24 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/getFloatValueForUnit-expected.txt ('k') | LayoutTests/fast/css/image-value-type-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698