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

Side by Side Diff: third_party/WebKit/LayoutTests/security/immutable-prototype.html

Issue 2452073002: Freeze global prototype chain per WebIDL (Closed)
Patch Set: Remove useless test Created 4 years, 1 month 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 <!DOCTYPE html>
2 <html>
3 <script src="../resources/testharness.js"></script>
4 <script src="../resources/testharnessreport.js"></script>
5 <script src="immutable-prototype.js"></script>
6 <script>
7 'use strict';
8
9 test(() => {
10 let result = prototypeChain(window);
11 assert_array_equals(result,
12 ['immutable', 'immutable', 'immutable', 'immutable', 'immu table']);
13 }, 'global object prototype chain should be immutable');
14 </script>
15 </html>
16
Yuki 2016/11/09 07:06:44 nit: unnecessary empty line.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698