OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 // Devtools APIs are all marked nocompile, so they shouldn't exist. | |
6 chrome.test.assertEq(undefined, chrome.devtools); | |
7 chrome.test.assertEq('undefined', typeof chrome.devtools); | |
8 chrome.test.assertFalse(chrome.hasOwnProperty('devtools')); | |
9 chrome.test.succeed(); | |
OLD | NEW |