diff options
author | WriterOfAlicrow <writerofalicrow@gmail.com> | 2015-05-15 22:44:10 -0400 |
---|---|---|
committer | WriterOfAlicrow <writerofalicrow@gmail.com> | 2015-05-15 22:44:10 -0400 |
commit | 85c88c707f5b00d215fab42e6da409615bbd6767 (patch) | |
tree | 5f4f8b3891b917146ade33c9653cd484ab3cbc3f /components/script | |
parent | 089862090285b1126deaa2357505d2a027e56b2e (diff) | |
download | servo-85c88c707f5b00d215fab42e6da409615bbd6767.tar.gz servo-85c88c707f5b00d215fab42e6da409615bbd6767.zip |
Fix for Issue #6073
Diffstat (limited to 'components/script')
-rw-r--r-- | components/script/dom/htmlinputelement.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/dom/htmlinputelement.rs b/components/script/dom/htmlinputelement.rs index e077cfac737..09c4667025f 100644 --- a/components/script/dom/htmlinputelement.rs +++ b/components/script/dom/htmlinputelement.rs @@ -413,6 +413,8 @@ impl<'a> HTMLInputElementHelpers for JSRef<'a, HTMLInputElement> { .as_ref() .map(|group| &**group)); } + + self.force_relayout(); //TODO: dispatch change event } |