-
Notifications
You must be signed in to change notification settings - Fork 235
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Serialize rcdom iteratively #372
Conversation
@bors-servo r+ |
📌 Commit 19eba5d has been approved by |
Serialize rcdom iteratively Fixes #371.
💔 Test failed - checks-travis |
@bors-servo r=Manishearth |
📌 Commit ebfffde has been approved by |
Serialize rcdom iteratively Fixes #371.
💔 Test failed - checks-travis |
Maybe +cargo bench --all
Updating crates.io index
error: failed to select a version for the requirement `markup5ever = "^0.7"`
candidate versions found which didn't match: 0.8.0
location searched: /home/travis/build/servo/html5ever/markup5ever
required by package `html5ever v0.22.7 (/home/travis/build/servo/html5ever/html5ever)`
The command "scripts/travis-build.sh" exited with 101. |
@bors-servo r=manishearth |
📌 Commit 014b3ce has been approved by |
Serialize rcdom iteratively Fixes #371.
☀️ Test successful - checks-travis |
Expose public Node constructor. Since #372 there is a private field in Node that prevents constructing them manually. If we want to support that, we need to expose the constructor.
Fixes #371.