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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/cssURLImageValue.html

Issue 2208283002: [Typed-OM] Add CSSURLImageValue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@CSSProperties_Image
Patch Set: Rebase Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698