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

Side by Side Diff: LayoutTests/fast/css/reload-non-styled-element-crash.html

Issue 14064008: Clear StyleResolver state before returning from styleForElement(). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Clear StyleResolver state before returning from styleForElement() Created 7 years, 8 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/css/reload-non-styled-element-crash-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 <html>
3 <head>
4 <script>
5 function start() {
6 document.body.innerHTML='<p>laserator<p>#f'
7 document.body.innerHTML = ''
8 var m = document.createElementNS('http://www.w3.org/1998/Math/MathML','f ree');
9 document.body.appendChild(m);
10 location.reload();
11 document.body.offsetTop;
12 document.body.innerHTML='PASS if no crash or assert in debug';
13 if (window.testRunner)
14 testRunner.dumpAsText();
15 }
16 </script>
17 </head>
18 <body onload='start()'></body>
19 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css/reload-non-styled-element-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698