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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/StyleSheet/script-tests/css-medialist-item.js

Issue 2667393002: Stop using script-tests in fast/dom/. (Closed)
Patch Set: . Created 3 years, 10 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 description("This tests indexing outside the range of the media list object.");
2
3 var styleElement = document.createElement('style');
4 styleElement.setAttribute('media', 'screen, print');
5 document.documentElement.appendChild(styleElement)
6 var mediaList = document.styleSheets[document.styleSheets.length - 1].media;
7
8 shouldEvaluateTo('mediaList.length', 2);
9 shouldBeEqualToString('mediaList[0]', 'screen');
10 shouldBeEqualToString('mediaList[1]', 'print');
11 shouldBeUndefined('mediaList[2]');
12 shouldBeUndefined('mediaList[-1]')
13
14 document.documentElement.removeChild(styleElement);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698