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

Side by Side Diff: LayoutTests/fast/block/marquee-width-shrinks-to-fit-in-fixed-size-container.html

Issue 1318933002: Revert of Deprecate 'intrinsic' and 'min-intrinsic' CSS keywords (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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
« no previous file with comments | « no previous file | LayoutTests/fast/css-grid-layout/percent-track-breadths-regarding-container-size-expected.txt » ('j') | 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 <script src="../../resources/js-test.js"></script> 2 <script src="../../resources/js-test.js"></script>
3 <style> 3 <style>
4 .outer { 4 .outer {
5 width: 200px; 5 width: 200px;
6 } 6 }
7 .inner { 7 .inner {
8 width: fit-content; 8 width: intrinsic;
9 } 9 }
10 </style> 10 </style>
11 <div class="outer"> 11 <div class="outer">
12 <div class="inner"> 12 <div class="inner">
13 <marquee>The quick brown fox jumps over the lazy dog. The quick brown fox ju mps over the lazy dog. The quick brown fox jumps over the lazy dog.</marquee> 13 <marquee>The quick brown fox jumps over the lazy dog. The quick brown fox ju mps over the lazy dog. The quick brown fox jumps over the lazy dog.</marquee>
14 </div> 14 </div>
15 </div> 15 </div>
16 <script> 16 <script>
17 description("Test that a horizontal marquee doesn't contribute to a container's intrinsic minimum width."); 17 description("Test that a horizontal marquee doesn't contribute to a container's intrinsic minimum width.");
18 shouldBeEqualToNumber("document.querySelector('.inner').getBoundingClientRect(). width", 200); 18 shouldBeEqualToNumber("document.querySelector('.inner').getBoundingClientRect(). width", 200);
19 </script> 19 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css-grid-layout/percent-track-breadths-regarding-container-size-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698