Skip to content

Commit

Permalink
test: Fix broken tests and disable some (angular#5)
Browse files Browse the repository at this point in the history
Also renamed blocklist to more appropriate name
  • Loading branch information
jessicajaniuk authored Feb 21, 2023
1 parent ba8aa52 commit 2b6ee26
Show file tree
Hide file tree
Showing 8 changed files with 662 additions and 395 deletions.
2 changes: 0 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,6 @@
`Element#removeAttribute`/`Element#removeAttributeNS`. (#90, @clint-tseng)
* Fix deep `Document#importNode`. (#93)
* Ensure that `Node#parentNode` is `null` (not `undefined`) when removed.
* Add an optional second argument to `domino.createWindow` to specify
the document's address.
* Tweak JavaScript properties which are DOM reflections of element
attributes in order to more closely match the DOM 4 spec.
* Implement `ChildNode#before()`, `ChildNode#after()`, and
Expand Down
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,6 @@ The only exception is the initial creation of a document:
var domino = require('domino');
var Element = domino.impl.Element; // etc

var window = domino.createWindow('<h1>Hello world</h1>', 'http://example.com');
var document = window.document;

// alternatively: document = domino.createDocument(htmlString, true)

var h1 = document.querySelector('h1');
Expand Down
Loading

0 comments on commit 2b6ee26

Please sign in to comment.