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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/text/breaking-context-inline-crash.html

Issue 2363833003: FATAL:DCHECK failed on BreakingContext::rewindToMidWordBreak() (Closed)
Patch Set: Created 4 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <head>
3
4 <script src="../../resources/testharness.js"></script>
5 <script src="../../resources/testharnessreport.js"></script>
6 <script>
7 window.onload = function() {
8 done();
9 };
10 </script>
kojii 2016/09/27 07:51:01 Can you explain why we need this scripts?
11 <style>
12 @font-face {
13 font-family: Ahem;
14 src: url(../../resources/Ahem.ttf);
15 }
16
17 div {
18 width:135px;
19 font-family:Ahem;
20 font-size:18px;
21 word-wrap:break-word;
22 word-break:break-all;
23 outline : solid 1px red;
kojii 2016/09/27 07:51:01 Please be consistent on spaces. I think we general
24 }
25 </style>
26 </head>
27 <body>
28 <div>abcdef <span>V<span>.net</div>
29 Test passes if it does not CRASH in debug build.
30 </body>
31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698