Re: [dev-servo] Generating flow content without DOM children

2014-09-28 Thread Josh Matthews
On 2014-09-28 12:36 PM, Patrick Walton wrote: On 9/28/14 9:30 AM, Josh Matthews wrote: Right, but that's predicated on the existence of Web Components which is going to be a gigantic project in all likelihood. I'm just seeing how useful some small form control code written in Rust ends up being,

Re: [dev-servo] Generating flow content without DOM children

2014-09-28 Thread Patrick Walton
On 9/28/14 9:30 AM, Josh Matthews wrote: Right, but that's predicated on the existence of Web Components which is going to be a gigantic project in all likelihood. I'm just seeing how useful some small form control code written in Rust ends up being, but I'm stuck on the layout bits. So I guess

Re: [dev-servo] Generating flow content without DOM children

2014-09-28 Thread Josh Matthews
On 2014-09-28 11:46 AM, Patrick Walton wrote: On 9/28/14 8:12 AM, Josh Matthews wrote: I started trying to implement really basic form controls, and I've become stuck on my under-developed layout knowledge. HTMLInputElement is special, because it has no DOM children and instead needs to perform

Re: [dev-servo] Generating flow content without DOM children

2014-09-28 Thread Patrick Walton
On 9/28/14 8:12 AM, Josh Matthews wrote: I started trying to implement really basic form controls, and I've become stuck on my under-developed layout knowledge. HTMLInputElement is special, because it has no DOM children and instead needs to perform layout based on its value attribute (which cont

[dev-servo] Generating flow content without DOM children

2014-09-28 Thread Josh Matthews
I started trying to implement really basic form controls, and I've become stuck on my under-developed layout knowledge. HTMLInputElement is special, because it has no DOM children and instead needs to perform layout based on its value attribute (which contains the current text). This seems simi