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

Side by Side Diff: third_party/WebKit/LayoutTests/printing/printing-transition-ignore-media-print.html

Issue 1375833003: Chrome currently doesn't ignore transitions when using "@media print" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Space issues Created 5 years, 2 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script>
4 <style>
5 #target {
6 height: 250px;
7 transition: all 10s;
8 }
9
10 @media print {
11 #target {
12 height: 800px;
13 }
14 }
15 </style>
16
17 <div id="target"></div>
18
19 <script>
20 test(function() {
21 if (window.internals) {
22 assert_equals(getComputedStyle(target).height, "250px");
23 assert_equals(internals.numberOfPages(500, 500), 2);
24 assert_equals(getComputedStyle(target).height, "250px");
25 }
26 }, "This test checks that transition are ignored when in @media print");
27 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698