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

Side by Side Diff: LayoutTests/fast/css/invalidation/targeted-attribute-scope.html

Issue 211333003: Restore attribute array length in RecursionCheckPoint. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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 | LayoutTests/fast/css/invalidation/targeted-attribute-scope-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 <script src="../../../resources/js-test.js"></script>
3 <style>
4 .inner1 [attr] { color: red; }
5 .inner2 .nomatch { color: red; }
6 </style>
7 <div id="outer">
8 <div id="inner1">
9 <div></div>
10 </div>
11 <div id="inner2">
12 <div attr></div>
13 </div>
14 </div>
15 <script>
16 description("Test invalidation set scope for attribute features.");
17
18 document.body.offsetLeft; // force style recalc.
19
20 document.getElementById("inner1").className = "inner1";
21 document.getElementById("inner2").className = "inner2";
22 if (window.internals)
23 shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "2");
24 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css/invalidation/targeted-attribute-scope-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698