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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-animation.html

Issue 20806004: Remove Explicit Shapes Enablement in Tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Enabled by default, no need to call internals Created 7 years, 4 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <script>
6 if (window.internals)
7 window.internals.settings.setCSSExclusionsEnabled(true);
8 </script>
9 <style> 5 <style>
10 .box { 6 .box {
11 height: 100px; 7 height: 100px;
12 width: 100px; 8 width: 100px;
13 margin: 10px; 9 margin: 10px;
14 display: inline-block; 10 display: inline-block;
15 } 11 }
16 12
17 #rectangle-box { 13 #rectangle-box {
18 -webkit-animation: rectangle-anim 2s linear 14 -webkit-animation: rectangle-anim 2s linear
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 65
70 <div class="box" id="rectangle-box">Moving Text</div> 66 <div class="box" id="rectangle-box">Moving Text</div>
71 <div class="box" id="circle-box">Moving Text</div> 67 <div class="box" id="circle-box">Moving Text</div>
72 <div class="box" id="ellipse-box">Moving Text</div> 68 <div class="box" id="ellipse-box">Moving Text</div>
73 <div class="box" id="polygon-box">Moving Text</div> 69 <div class="box" id="polygon-box">Moving Text</div>
74 70
75 <div id="result"> 71 <div id="result">
76 </div> 72 </div>
77 </body> 73 </body>
78 </html> 74 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698