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

Side by Side Diff: third_party/WebKit/ManualTests/overflow-on-text-beside-form-element.html

Issue 2688413002: Calculate glyph overflow when computing overflow outside of layout (Closed)
Patch Set: 667245 Created 3 years, 9 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/layout/line/InlineFlowBox.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 <meta charset=utf8>
3 <p>crbug.com/667245: Overflow on text beside a form element should get repainted . When clicking on the checkbox there should be no artefact's left from the blac k rectangle and it should stay the same size (with the bug a row of pixels at th e top and bottom were getting lost).</p>
4 <div id="test" style="font-size: 35px;">
5 <input type="checkbox" id="checkbox" checked=true onclick="toggle();"> █
6 </div>
7 <script>
8 function toggle()
9 {
10 var node = document.getElementById("test");
11 node.style.color == 'rgb(255, 255, 255)' ? node.style.color = 'rgb(0, 0, 0)' : node.style.color = 'rgb(255, 255, 255)';
12 }
13 </script>
14
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698