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

Side by Side Diff: LayoutTests/fast/css-generated-content/quote-layout-focus-crash.html

Issue 12301012: Merge 143060 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1410/
Patch Set: Created 7 years, 10 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <style> 3 <style>
4 /* Must be positioned absolute or static, must have margins to push it out v iew. */ 4 /* Must be positioned absolute or static, must have margins to push it out v iew. */
5 .positioned { 5 .positioned {
6 position: absolute; 6 position: absolute;
7 margin-top: 100%; 7 margin-top: 100%;
8 } 8 }
9 9
10 /* Any kind of quote will do, can be either :before or :after */ 10 /* Any kind of quote will do, can be either :before or :after */
(...skipping 27 matching lines...) Expand all
38 <div class="positioned"></div> 38 <div class="positioned"></div>
39 <div class="focusable" tabindex="1"></div> 39 <div class="focusable" tabindex="1"></div>
40 40
41 <script> 41 <script>
42 if (window.testRunner) 42 if (window.testRunner)
43 testRunner.dumpAsText(); 43 testRunner.dumpAsText();
44 // .focusable still needs layout at this point, but RenderView doesn't 44 // .focusable still needs layout at this point, but RenderView doesn't
45 // think any descendants need layout. 45 // think any descendants need layout.
46 document.querySelector('.focusable').focus(); 46 document.querySelector('.focusable').focus();
47 </script> 47 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698