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

Side by Side Diff: LayoutTests/fast/css/large-value-csstext.html

Issue 703323002: Continue removing testing of getPropertyCSSValue (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
« no previous file with comments | « LayoutTests/fast/css/inherited-properties-rare-text.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style type="text/css" media="screen"> 4 <style type="text/css" media="screen">
5 #box { 5 #box {
6 border-top-left-radius: 9999999999999999999999999999999999999999999 99999999999999999999999999999999999999999999999999999999999999999999999999999999 99999999999999999999999999999999999999999999999999999999999999999999999999999999 999999999999999999999999999999999999999999999999999%; 6 border-top-left-radius: 9999999999999999999999999999999999999999999 99999999999999999999999999999999999999999999999999999999999999999999999999999999 99999999999999999999999999999999999999999999999999999999999999999999999999999999 999999999999999999999999999999999999999999999999999%;
7 border-top-right-radius: 0.00000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 000000000000000000000000000000000000000000000009%; 7 border-top-right-radius: 0.00000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 000000000000000000000000000000000000000000000009%;
8 } 8 }
9 </style> 9 </style>
10 <script type="text/javascript" charset="utf-8"> 10 <script type="text/javascript" charset="utf-8">
11 if (window.testRunner) 11 if (window.testRunner)
12 testRunner.dumpAsText(); 12 testRunner.dumpAsText();
13 </script> 13 </script>
14 </head> 14 </head>
15 <body> 15 <body>
16 <p>This test should not crash.</p> 16 <p>This test should not crash.</p>
17 <div id="box"></div> 17 <div id="box"></div>
18 <div id="output"></div> 18 <div id="output"></div>
19 <script type="text/javascript" charset="utf-8"> 19 <script type="text/javascript" charset="utf-8">
20 var output = document.getElementById('output'); 20 var output = document.getElementById('output');
21 21
22 var rule = document.styleSheets[0].cssRules[0]; 22 var rule = document.styleSheets[0].cssRules[0];
23 output.innerHTML += rule.style.getPropertyCSSValue('border-top-left-radius') .cssText + "<br>"; 23 output.innerHTML += rule.style.borderTopLeftRadius + "<br>";
24 output.innerHTML += rule.style.getPropertyCSSValue('border-top-right-radius' ).cssText; 24 output.innerHTML += rule.style.borderTopRightRadius;
25 </script> 25 </script>
26 </body> 26 </body>
27 </html> 27 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/inherited-properties-rare-text.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698