Commit 16a7d477 authored by Cameron McCormack's avatar Cameron McCormack
Browse files

Bug 1687879 - Fix chrome mochitests that use <splitter>s to work when the...

Bug 1687879 - Fix chrome mochitests that use <splitter>s to work when the non-native theme is enabled. r=spohl

Differential Revision: https://phabricator.services.mozilla.com/D102656
parent 1338970d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -88,13 +88,13 @@ XUL <splitter> collapsing tests

  <hbox style="max-width: 200px; height: 300px; direction: ltr;">
    <vbox style="width: 100px; height: 300px;" flex="1"/>
    <splitter id="ltr-splitter"/>
    <splitter id="ltr-splitter" width="5"/>
    <vbox style="width: 100px; height: 300px;" flex="1"/>
  </hbox>

  <hbox style="max-width: 200px; height: 300px; direction: rtl;">
    <vbox style="width: 100px; height: 300px;" flex="1"/>
    <splitter id="rtl-splitter"/>
    <splitter id="rtl-splitter" width="5"/>
    <vbox style="width: 100px; height: 300px;" flex="1"/>
  </hbox>

+1 −1
Original line number Diff line number Diff line
@@ -284,7 +284,7 @@ SimpleTest.waitForFocus(runTests);

  <hbox id="splitterbox" style="margin-top: 5px;" onmousedown="this.setCapture()">
    <hbox id="leftbox" width="100" flex="1"/>
    <splitter id="splitter" height="5"/>
    <splitter id="splitter" width="5" height="5"/>
    <hbox id="rightbox" width="100" flex="1"/>
  </hbox>