--- id: 587d7fa8367417b2b2512bcc title: Display Shapes with SVG required: - src: 'https://cdnjs.cloudflare.com/ajax/libs/d3/4.3.0/d3.min.js' challengeType: 6 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert($("rect").length == 1, "Your document should have 1 rect element.");' - text: '' testString: 'assert($("rect").attr("width") == "25", "The rect element should have a width attribute set to 25.");' - text: '' testString: 'assert($("rect").attr("height") == "100", "The rect element should have a height attribute set to 100.");' - text: '' testString: 'assert($("rect").attr("x") == "0", "The rect element should have an x attribute set to 0.");' - text: '' testString: 'assert($("rect").attr("y") == "0", "The rect element should have a y attribute set to 0.");' ```
## Challenge Seed
```html ```
## Solution
```js // solution required ```