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

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

Issue 1200103006: Marquee width should not change a fixed width of its container. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update the description in the test. Created 5 years, 6 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 | LayoutTests/fast/block/marquee-width-shrinks-to-fit-in-fixed-size-container-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
(Empty)
1 <!DOCTYPE html>
2 <script src="../../resources/js-test.js"></script>
3 <style>
4 .outer {
5 width: 200px;
6 }
7 .inner {
8 width: intrinsic;
9 }
10 </style>
11 <div class="outer">
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>
14 </div>
15 </div>
16 <script>
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);
19 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/block/marquee-width-shrinks-to-fit-in-fixed-size-container-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698