| Index: third_party/WebKit/LayoutTests/typedcssom/cssURLImageValue.html
|
| diff --git a/third_party/WebKit/LayoutTests/nfc/idl-NavigatorNFC.html b/third_party/WebKit/LayoutTests/typedcssom/cssURLImageValue.html
|
| similarity index 51%
|
| copy from third_party/WebKit/LayoutTests/nfc/idl-NavigatorNFC.html
|
| copy to third_party/WebKit/LayoutTests/typedcssom/cssURLImageValue.html
|
| index 5a4b496f9b6f9c5ed5bb5f9ce4d412e8f62942e9..ebebca4246fc47891ffb6da2c647bf509f57edad 100644
|
| --- a/third_party/WebKit/LayoutTests/nfc/idl-NavigatorNFC.html
|
| +++ b/third_party/WebKit/LayoutTests/typedcssom/cssURLImageValue.html
|
| @@ -1,9 +1,12 @@
|
| <!DOCTYPE html>
|
| <script src="../resources/testharness.js"></script>
|
| <script src="../resources/testharnessreport.js"></script>
|
| +
|
| <script>
|
| +
|
| test(function() {
|
| - assert_true('nfc' in navigator,
|
| - 'navigator.nfc exists.');
|
| -}, 'navigator.nfc IDL test');
|
| + var bg = new CSSURLImageValue("http://localhost");
|
| + assert_equals(bg.state, "unloaded");
|
| +}, "Can construct a new CSSURLImageValue object with url");
|
| +
|
| </script>
|
|
|