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

Side by Side Diff: LayoutTests/fast/flexbox/order-iterator-crash.html

Issue 19558006: Heap-use-after-free in WebCore::RenderFlexibleBox::firstLineBoxBaseline (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Removed bad FINAL Created 7 years, 5 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
OLDNEW
(Empty)
1 <div>This test has passed if it doesn't crash under ASAN.</div>
inferno 2013/07/19 20:25:08 nit: we should add a <!DOCTYPE html>
Julien - ping for review 2013/07/19 20:52:31 Nope, this test requires quirks mode :(
2 <style>
3 * { display: flex; }
4 </style>
5 <table><td id="crashy"></td></table>
6 <script>
7 if (window.testRunner)
8 testRunner.dumpAsText();
9
10 crashy.offsetLeft;
11 crashy.parentNode.removeChild(crashy);
12 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698