Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/cssom/style-backgroundimage-lineargradient.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSSOM: Setting style.backgroundImage</title>
<meta charset="utf-8">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="test"></div>
<script>
"use strict";
test(() => {
const div = document.getElementById("test");
div.style.backgroundImage = "linear-gradient(270deg, blue 0%, red 100%)";
assert_equals(div.style.backgroundImage, "linear-gradient(270deg, blue 0%, red 100%)");
});
</script>