Skip to content
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

Add support for css class selection #499

Merged
merged 4 commits into from Jun 12, 2013
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Next

Supprot css class selection

  • Loading branch information
ILyoan committed Jun 12, 2013
commit 97b5f5cdd60fefdb6fb5cc3f30298db31b914054
@@ -86,6 +86,16 @@ impl SelectHandler<AbstractNode<LayoutView>> for NodeSelectHandler {
}
}

fn with_node_classes<R>(&self, node: &AbstractNode<LayoutView>, f: &fn(Option<&str>) -> R) -> R {
if !node.is_element() {
fail!(~"attempting to style non-element node");
}
do node.with_imm_element() |element_n| {
f(element_n.get_attr("class"))
}
}


fn with_node_id<R>(&self, node: &AbstractNode<LayoutView>, f: &fn(Option<&str>) -> R) -> R {
if !node.is_element() {
fail!(~"attempting to style non-element node");
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.