summaryrefslogtreecommitdiffstats
path: root/testing/marionette/harness/marionette_harness/tests/unit/test_chrome_element_css.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/marionette/harness/marionette_harness/tests/unit/test_chrome_element_css.py')
-rw-r--r--testing/marionette/harness/marionette_harness/tests/unit/test_chrome_element_css.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/marionette/harness/marionette_harness/tests/unit/test_chrome_element_css.py b/testing/marionette/harness/marionette_harness/tests/unit/test_chrome_element_css.py
new file mode 100644
index 000000000..fde7e8373
--- /dev/null
+++ b/testing/marionette/harness/marionette_harness/tests/unit/test_chrome_element_css.py
@@ -0,0 +1,23 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+from marionette_driver.by import By
+
+from marionette_harness import MarionetteTestCase
+
+
+class TestChromeElementCSS(MarionetteTestCase):
+
+ def test_we_can_get_css_value_on_chrome_element(self):
+ self.marionette.navigate("about:blank")
+ with self.marionette.using_context("chrome"):
+ element = self.marionette.find_element(By.ID, "identity-icon")
+ favicon_image = element.value_of_css_property("list-style-image")
+
+ self.assertIn("identity-icon.svg", favicon_image)
+
+ element = self.marionette.find_element(By.ID, "identity-box")
+ background_colour = element.value_of_css_property("background-color")
+
+ self.assertEqual("transparent", background_colour)