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

Side by Side Diff: LayoutTests/fast/css/sticky/resources/parsing-position-sticky.js

Issue 346603007: Remove position: sticky (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 description("This tests checks that the sticky value for position parses correct ly.");
2
3 function test(value)
4 {
5 var div = document.createElement("div");
6 div.setAttribute("style", value);
7 document.body.appendChild(div);
8
9 var result = div.style.getPropertyValue("position");
10 document.body.removeChild(div);
11 return result;
12 }
13
14 shouldBe('test("position: sticky;")', '"sticky"');
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698