-
Notifications
You must be signed in to change notification settings - Fork 234
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
xml5ever: Bubble parser blocking scripts to the caller instead of the TreeSink #591
xml5ever: Bubble parser blocking scripts to the caller instead of the TreeSink #591
Conversation
0618139
to
3375264
Compare
The difference between the way The html parser pushes the input into the tokenizer and waits to see if any blocking scripts come back: https://github.com/servo/servo/blob/0d38d6239a4356928c2a7ec0a3cd53ecc32096b0/components/script/dom/servoparser/html.rs#L87-L94 The xml parser pushes the input into the tokenizer, waits until it stops and then checks whether the sink has received any blocking scripts: https://github.com/servo/servo/blob/0d38d6239a4356928c2a7ec0a3cd53ecc32096b0/components/script/dom/servoparser/xml.rs#L45-L51 |
76fa418
to
c185ee9
Compare
// FIXME: Properly support </script> somehow. | ||
let _ = self.tokenizer.feed(&self.input_buffer); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is okay, because it is exactly what html5ever
does too:
html5ever/html5ever/src/driver.rs
Lines 107 to 109 in 31a2c31
self.input_buffer.push_back(t); | |
// FIXME: Properly support </script> somehow. | |
while let TokenizerResult::Script(_) = self.tokenizer.feed(&self.input_buffer) {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems good to me, though perhaps someone more familiar with html5ever should review.
… TreeSink This is the same approach used by html5ever, which will hopefully allow unifying their API a bit as part of the effort for encoding support. This is a breaking change. The TreeSink::complete_script method is removed.
c185ee9
to
6ef6986
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is great! Thanks for digging into this.
This should have been done as part of servo#591. I forgot that servo depends on the crates.io version of html5ever, not the git repository. So to upgrade in servo we need to release new versions of all three crates. Signed-off-by: Simon Wülker <[email protected]>
This should have been done as part of servo#591. I forgot that servo depends on the crates.io version of html5ever, not the git repository. So to upgrade in servo we need to release new versions of all three crates. Signed-off-by: Simon Wülker <[email protected]>
This should have been done as part of #591. I forgot that servo depends on the crates.io version of html5ever, not the git repository. So to upgrade in servo we need to release new versions of all three crates. Signed-off-by: Simon Wülker <[email protected]>
This is the same approach used by html5ever, which will hopefully allow unifying their API a bit as part of the effort for encoding support.
This is a breaking change. The TreeSink::complete_script method (among other things) is removed.