Add a FIXME comment of EOF handling in custom properties.

This commit is contained in:
Simon Sapin 2015-07-23 11:54:42 +02:00
parent c3b8b39437
commit a18a1a8d79

View file

@ -317,5 +317,11 @@ fn substitute_block(custom_properties: &HashMap<&Atom, BorrowedValue>,
_ => {}
}
}
// FIXME: deal with things being implicitly closed at the end of the input. E.g.
// ```html
// <div style="--color: rgb(0,0,0">
// <p style="background: var(--color) var(--image) top left; --image: url('a.png"></p>
// </div>
// ```
Ok(())
}