Граф коммитов

100 Коммитов

Автор SHA1 Сообщение Дата
Hiroyuki Ikezoe f2d516f849 Bug 1517682 - Drop layout.css.box-decoration-break.enabled pref. r=heycam
It was enabled by default in bug 1006326.

Differential Revision: https://phabricator.services.mozilla.com/D15702

--HG--
extra : moz-landing-system : lando
2019-01-04 07:23:07 +00:00
Boris Chiou c35f47093e Bug 1322780 - Part 2: Support unprefixed min-content and max-content. r=mats,emilio
Support unprefixed min-content and max-content and treat the prefixed
version as aliases for
1. width, min-width, max-width if inline-axis is horizontal, and
2. height, min-height, max-height if inline-axis is vertical, and
3. inline-size, min-inline-size, max-inline-size, and
4. flex-basis.

Besides, update the test cases to use unprefixed max-content and
min-content.

Depends on D7535

Differential Revision: https://phabricator.services.mozilla.com/D7536

--HG--
extra : moz-landing-system : lando
2018-12-18 18:47:37 +00:00
Joel Maher af81c03a10 Bug 1392106 - random-if more test cases for windows 7 letter rendering failures. r=RyanVM
random-if statements for the last 2 days worth of annotated failures

Differential Revision: https://phabricator.services.mozilla.com/D4070

--HG--
extra : moz-landing-system : lando
2018-08-27 18:38:37 +00:00
Gurzau Raul 9a8991af69 Backed out changeset b168deee0bcf (bug 1392106) for failures on canvas/1304353-text-global-composite-op-1.html on a CLOSED TREE
--HG--
extra : amend_source : 3529e35d35d31def6e2da65217dc1343885dfa3a
2018-08-23 18:16:05 +03:00
Joel Maher e6844b61ad Bug 1392106 - random-if more test cases for windows 7 letter rendering failures. r=RyanVM
random-if statements for the last 2 days worth of annotated failures

Differential Revision: https://phabricator.services.mozilla.com/D4070

--HG--
extra : moz-landing-system : lando
2018-08-23 12:35:17 +00:00
L. David Baron 1e88f0f003 Bug 1369941: Replace single integers N in fuzzy() and fuzzy-if() with 0-N ranges. r=dholbert
This patch was written entirely by the following script:

  #!/bin/bash

  if [ ! -d "./.hg" ]
  then
    echo "Not in a source tree." 1>&2
    exit 1
  fi

  find . -regex '.*\(ref\|crash\)test.*\.list' | while read FILENAME
  do
    echo "Processing ${FILENAME}."
    # The following has four substitutions:
    # * The first one replaces the *first* argument to fuzzy() when it doesn't
    #   have a - in it, by replacing it with an explicit 0-N range.
    # * The second one does the same for the *second* argument to fuzzy().
    # * The third does the same for the *second* argument to fuzzy-if().
    # * The fourth does the same for the *third* argument to fuzzy-if().
    #
    # Note that this is using perl rather than sed because perl doesn't
    # support non-greedy matching, which is needed for the first argument to
    # fuzzy-if.
    perl -pi -e 's/(fuzzy\()([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy\([^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,)([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,[^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g' "${FILENAME}"
  done

Differential Revision: https://phabricator.services.mozilla.com/D2974

--HG--
extra : moz-landing-system : lando
2018-08-09 20:10:21 +00:00
Emilio Cobos Álvarez 8805f43898 Bug 1473813: Don't make pseudo-elements replaced by content: url(..). r=bz
Differential Revision: https://phabricator.services.mozilla.com/D1996
2018-07-16 18:06:39 +02:00
shindli ba72001f71 Backed out 2 changesets (bug 1473813, bug 1472403) for bustages in /builds/worker/workspace/build/src/dom/base/MessageSender.cpp:24:19 on a CLOSED TREE
Backed out changeset 93e4dff7e346 (bug 1473813)
Backed out changeset 365a0841117a (bug 1472403)
2018-07-16 18:45:33 +03:00
Emilio Cobos Álvarez 7d861904c9 Bug 1473813: Don't make pseudo-elements replaced by content: url(..). r=bz
Differential Revision: https://phabricator.services.mozilla.com/D1996
2018-07-16 17:30:15 +02:00
Morgan Rae Reschenberg 29036db401 Bug 1470329 - Change ReflowInput to have unconstrained BSize for size-contained elements, add reftests r=dholbert
MozReview-Commit-ID: 6IRAi8iScwy

--HG--
extra : rebase_source : 13f3de7149f82aa6d742eda957f1327d41fcd5ef
2018-07-02 09:43:03 -07:00
Brindusan Cristian 911da838e3 Backed out changeset 3eed69f0be08 (bug 1470329) for web-platform failures on /css/css-contain/contain-size-breaks-001.html. CLOSED TREE 2018-07-04 01:26:31 +03:00
Morgan Rae Reschenberg 51d3a6c12c Bug 1470329 - Change ReflowInput to have unconstrained BSize for size-contained elements, add reftests r=dholbert
MozReview-Commit-ID: 6IRAi8iScwy

--HG--
extra : rebase_source : 2d98a5f5fc591fcb8d6360c0a6ac478e6afd77a6
2018-07-02 09:43:03 -07:00
Emilio Cobos Álvarez 8f2668dd6e Bug 1472389: test content: url() pagination path. r=dholbert
With a bonus pseudo-element test as well :)

Differential Revision: https://phabricator.services.mozilla.com/D1896

--HG--
extra : moz-landing-system : lando
2018-06-30 03:07:27 +00:00
Jonathan Kew 80ebb3e8d9 Bug 1428826 - Don't rely on FT_Get_Advance for glyph widths, get the advance from the glyph slot instead for better consistency with cairo metrics & rendering; update test expectations for minor changes in rendering. r=lsalzman 2018-01-09 17:36:37 +00:00
Jonathan Kew 1a0fca4019 Bug 1318526 - Remove HTTP(..) from reftest manifests where this was only needed to work around file-URI origin restrictions. r=dbaron 2017-10-22 08:31:41 +01:00
Kartikaya Gupta 6c30f8962c Bug 1410239 - Ensure the mozPrintCallback gets invoked when painting canvases. r=jrmuizel
MozReview-Commit-ID: ADKQb3vVuPs

--HG--
extra : rebase_source : 1f9c4ee6ca3fbdfdb300052736e20af676df4869
2017-10-20 10:28:17 -04:00
Ethan Lin dfd3f86ae6 Bug 1394309 - Part3. Update the annotations after the fix. r=kats
MozReview-Commit-ID: 9Y1kMz1m8kp

--HG--
extra : rebase_source : dc898202ffe63fec882b60f6576835475faea6f9
2017-10-11 16:41:44 +08:00
Kartikaya Gupta 818cfd7499 Bug 1389000 - Update reftest annotations for layers-free results. r=jrmuizel
This patch:
- adds fails-if annotations for all the reftests that were consistently failing
  with layers-free turned on.
- removes fails-if or reduces the range on fuzzy-if annotations for all
  the reftests that were producing UNEXPECTED-PASS results with
  layers-free turned on.
- adds skip-if, random-if, or fuzzy-if annotations to the reftests that
  were intermittently failing due to timeout, obvious incorrectness, or
  slight pixel differences, respectively.

MozReview-Commit-ID: A0Aknn6rnjj

--HG--
extra : rebase_source : 420d9cf43f23a5d654fa36eec69138937d13c173
2017-09-26 14:49:19 -04:00
Chris Peterson ce7edc4de1 Bug 1394603 - Replace fails-if(!styloVsGecko) to fails. r=jryans
Skip tests that are expected to fail in both Stylo and Gecko modes. They would unexpectedly "pass" in styloVsGecko mode when comparing the two failures, which is not a useful result.

MozReview-Commit-ID: 3mOpjU225Q1

--HG--
extra : rebase_source : 22bb5d4e3c5138ef832995eaf5716824f4707ffe
extra : source : d40fb20c9a49d0797c0eeae613a04912b12a28f7
2017-09-01 20:39:44 -07:00
Phil Ringnalda 75f9cdbd7e Backed out 3 changesets (bug 1394603) for reftest syntax error
CLOSED TREE

Backed out changeset 44117208f321 (bug 1394603)
Backed out changeset 31088c59d895 (bug 1394603)
Backed out changeset 20551d68f602 (bug 1394603)

MozReview-Commit-ID: 4F4jSQ8GyfG
2017-09-06 22:48:55 -07:00
Chris Peterson 2d629378b2 Bug 1394603 - Replace fails-if(!styloVsGecko) to fails. r=jryans
Skip tests that are expected to fail in both Stylo and Gecko modes. They would unexpectedly "pass" in styloVsGecko mode when comparing the two failures, which is not a useful result.

MozReview-Commit-ID: 3mOpjU225Q1

--HG--
extra : rebase_source : 0c307639c3626af3b6b43e05d3ee73d08b3f47ce
2017-09-01 20:39:44 -07:00
Nazım Can Altınova 44e1e9ebce Bug 1394035 - stylo: Update @page rule test expectations r=emilio
MozReview-Commit-ID: IQNHKh3Ubv

--HG--
extra : rebase_source : 2456c2a942e65fb6dff036fbcea166b6333c6aad
2017-08-28 22:43:28 -07:00
Tobias Schneider 4c5ae9e764 Bug 1299848 - Move all reftest-paged tests to layout/reftests/pagination. r=dholbert
--HG--
rename : layout/reftests/printing/1108104-ref.html => layout/reftests/pagination/1108104-ref.html
rename : layout/reftests/printing/1108104.html => layout/reftests/pagination/1108104.html
rename : layout/reftests/printing/115199-1-ref.html => layout/reftests/pagination/115199-1-ref.html
rename : layout/reftests/printing/115199-1.html => layout/reftests/pagination/115199-1.html
rename : layout/reftests/printing/115199-2-ref.html => layout/reftests/pagination/115199-2-ref.html
rename : layout/reftests/printing/115199-2a.html => layout/reftests/pagination/115199-2a.html
rename : layout/reftests/printing/115199-2b.html => layout/reftests/pagination/115199-2b.html
rename : layout/reftests/printing/1166147-ref.html => layout/reftests/pagination/1166147-ref.html
rename : layout/reftests/printing/1166147.html => layout/reftests/pagination/1166147.html
rename : layout/reftests/printing/129941-1-ref.html => layout/reftests/pagination/129941-1-ref.html
rename : layout/reftests/printing/129941-1a.html => layout/reftests/pagination/129941-1a.html
rename : layout/reftests/printing/129941-1b.html => layout/reftests/pagination/129941-1b.html
rename : layout/reftests/printing/129941-1c.html => layout/reftests/pagination/129941-1c.html
rename : layout/reftests/printing/129941-1d.html => layout/reftests/pagination/129941-1d.html
rename : layout/reftests/printing/129941-1e.html => layout/reftests/pagination/129941-1e.html
rename : layout/reftests/printing/1321803-1-ref.html => layout/reftests/pagination/1321803-1-ref.html
rename : layout/reftests/printing/1321803-1a.html => layout/reftests/pagination/1321803-1a.html
rename : layout/reftests/printing/272830-1-ref.html => layout/reftests/pagination/272830-1-ref.html
rename : layout/reftests/printing/272830-1.html => layout/reftests/pagination/272830-1.html
rename : layout/reftests/printing/318022-1-ref.html => layout/reftests/pagination/318022-1-ref.html
rename : layout/reftests/printing/318022-1.html => layout/reftests/pagination/318022-1.html
rename : layout/reftests/printing/381497-f.html => layout/reftests/pagination/381497-f.html
rename : layout/reftests/printing/381497-n.html => layout/reftests/pagination/381497-n.html
rename : layout/reftests/printing/403669-1-ref.html => layout/reftests/pagination/403669-1-ref.html
rename : layout/reftests/printing/403669-1.html => layout/reftests/pagination/403669-1.html
rename : layout/reftests/printing/577450-1-ref.html => layout/reftests/pagination/577450-1-ref.html
rename : layout/reftests/printing/577450-1.html => layout/reftests/pagination/577450-1.html
rename : layout/reftests/printing/609227-1-ref.html => layout/reftests/pagination/609227-1-ref.html
rename : layout/reftests/printing/609227-1.html => layout/reftests/pagination/609227-1.html
rename : layout/reftests/printing/609227-2-ref.html => layout/reftests/pagination/609227-2-ref.html
rename : layout/reftests/printing/609227-2a.html => layout/reftests/pagination/609227-2a.html
rename : layout/reftests/printing/609227-2b.html => layout/reftests/pagination/609227-2b.html
rename : layout/reftests/printing/626395-1-ref.html => layout/reftests/pagination/626395-1-ref.html
rename : layout/reftests/printing/626395-1a.html => layout/reftests/pagination/626395-1a.html
rename : layout/reftests/printing/626395-1b.html => layout/reftests/pagination/626395-1b.html
rename : layout/reftests/printing/626395-2-ref.html => layout/reftests/pagination/626395-2-ref.html
rename : layout/reftests/printing/626395-2a.html => layout/reftests/pagination/626395-2a.html
rename : layout/reftests/printing/626395-2b.html => layout/reftests/pagination/626395-2b.html
rename : layout/reftests/printing/626395-2c.html => layout/reftests/pagination/626395-2c.html
rename : layout/reftests/printing/626395-2d.html => layout/reftests/pagination/626395-2d.html
rename : layout/reftests/printing/652178-1-ref.html => layout/reftests/pagination/652178-1-ref.html
rename : layout/reftests/printing/652178-1-ref2.html => layout/reftests/pagination/652178-1-ref2.html
rename : layout/reftests/printing/652178-1.html => layout/reftests/pagination/652178-1.html
rename : layout/reftests/printing/745025-1-ref.html => layout/reftests/pagination/745025-1-ref.html
rename : layout/reftests/printing/745025-1.html => layout/reftests/pagination/745025-1.html
rename : layout/reftests/printing/820496-1-ref.html => layout/reftests/pagination/820496-1-ref.html
rename : layout/reftests/printing/820496-1.html => layout/reftests/pagination/820496-1.html
rename : layout/reftests/printing/960822-ref.html => layout/reftests/pagination/960822-ref.html
rename : layout/reftests/printing/960822.html => layout/reftests/pagination/960822.html
rename : layout/reftests/printing/966419-1-ref.html => layout/reftests/pagination/966419-1-ref.html
rename : layout/reftests/printing/966419-1.html => layout/reftests/pagination/966419-1.html
rename : layout/reftests/printing/966419-2-ref.html => layout/reftests/pagination/966419-2-ref.html
rename : layout/reftests/printing/966419-2.html => layout/reftests/pagination/966419-2.html
rename : layout/reftests/printing/test-async-paged.html => layout/reftests/pagination/test-async-paged.html
2017-08-30 09:23:16 -07:00
Tobias Schneider 3880ddff03 Bug 1382327 - (reftest) Rename reftest-print to reftest-paged. r=dbaron
--HG--
extra : rebase_source : c4e47e2de8d615c77e7e9ce88f6b21c9d15c92e4
2017-07-26 22:53:46 -07:00
L. David Baron e652cbb66b Bug 1308876 - Avoid initiating special-height reflow as a result of new paginated non-dirty reflows. r=dholbert
Previously, in paginated mode, all reflows were dirty reflows, since
tables do not split outside of printing, and prior to the primary patch
in bug 1308876, all reflows during printing are dirty reflows.  (The
isPaginated test here is actually for real pages, not fragmentation in
general.  However, the use here is appropriate for the meaning of
whether it's possible for the table to fragment.)

The fact that all reflows were dirty reflows meant that the
NS_FRAME_CONTAINS_RELATIVE_BSIZE flag was always cleared immediately
before reflow in ReflowInput::InitResizeFlags (which might also have set
the flag on *ancestors*).  This meant that, prior to the primary patch
in bug 1308876, the initial value of needToInitiateSpecialReflow that
was initialized from the presence of the
NS_FRAME_CONTAINS_RELATIVE_BSIZE flag was always false.  This patch
preserves that initialization in the presence of the change in the
primary patch in bug 1308876.

This caused a failure in a single test in our test suite, and in a
rather complicated way.  The test was
layout/base/crashtests/470851-1.xhtml, in which there was both a
difference in assertion count (due to the bogus assertion "data loss -
incomplete row needed more height than available, on top of page" in
nsTableRowGroupFrame::SplitRowGroup, whose companion assertion "data
loss - complete row needed more height than available, on top of page"
is already just an NS_WARNING) that caused a test failure, and a
difference in layout (the test split across 3 pages rather than 2) that
did not cause a test failure.

This patch fixes the difference in layout.  The immediate cause of the
layout difference was that a cell (the second outermost) on the second
page had a height, computed in CalcUnpaginatedBSize, that was large
enough to cause it to need to continue onto the third page.  This height
came (via nsTableRowFrame::GetUnpaginatedBSize) from the
UnpaginatedHeightProperty stored on the first-in-flow of its row, on the
first page, stored by CacheRowBSizesForPrinting called in
nsTableRowGroupFrame::ReflowChildren during the reflow of its row group
on the first page, in a special height reflow initiated during the
second-pass constrained-height reflow of the table (still,
second-outermost) on the first page, due to the change being fixed in
this patch.

MozReview-Commit-ID: 3E84VwdXuPs
2017-07-12 19:37:12 -07:00
Shing Lyu c729f26a66 Bug 1367636 - Update stylo-vs-stylo reftest expectations. r=heycam
MozReview-Commit-ID: DVO2R2RQuiK
2017-05-25 16:44:44 +08:00
Shing Lyu 5d8a5a598c Bug 1361645 - Change reftest condition stylo to styloVsGecko r=dbaron
MozReview-Commit-ID: 3ekoU1zg8xA

--HG--
extra : rebase_source : f62c84516f5ac0d4b4d0c876514b72fa786ec542
2017-05-25 11:26:12 +08:00
L. David Baron 7fd8f7b188 Bug 1365449 - Reflow absolutely positioned children when they need to be repaginated. r=mats
This fixes the failure of
layout/reftests/pagination/dynamic-abspos-overflow-01-cols.xhtml with
the primary patch in bug 1308876.

Since it is an independently testable failure, I'm posting it as a
separate bug.

Without the patch, both reftests fail to rewrap in response to the
dynamic change, and the inner dark blue absolutely positioned element
remains wrapped at the wrong position when the inner light blue
relatively positioned element rewraps.  (I tested this only outside of
the reftest harness, but that should be sufficient.)

I verified manually that the height conditions were correct by modifying
both reftests to add some padding and border to #relpos and margin to
#abspos, changing the height of #abspos so that it was either exactly at
or just above the threshold where reflow was needed, and using
GECKO_DISPLAY_REFLOW_RULES_FILE debugging to verify that the reflow of
the absolutely positioned element did or didn't happen as expected.

MozReview-Commit-ID: 6ISgSEYyMiN

--HG--
extra : transplant_source : %93%86%8Csr_L%83%F2OJ%DC%7F%3D%7D%BC%9C%A6%1F0
2017-05-20 10:15:26 -07:00
Hiroyuki Ikezoe 43a902cb19 Bug 1361632 - Adjust reftest expectation for -moz-appearance. r=bholley. a=merge
MozReview-Commit-ID: 6sqyA5TCHjk

--HG--
extra : rebase_source : 4957d93a55717850594dabc2650cecf060022f75
extra : amend_source : 6ee8241b984e300386da617fa9304b288989fdb7
2017-05-04 06:39:30 +09:00
Shing Lyu c46f5d5baf Bug 1351548 - Remove reftest-stylo.lists. r=bholley
MozReview-Commit-ID: 8LoQ9xNnDnj
2017-04-28 11:15:58 +08:00
Shing Lyu 435db45b79 Bug 1351548 - Add stylo-vs-gecko expectations to reftest.lists. r=bholley
MozReview-Commit-ID: GOUGBsd05cn
2017-04-28 11:15:50 +08:00
Sebastian Hengst ceff3b0678 Backed out changeset 1f9d0f8e65b9 (bug 1351548) 2017-04-26 13:13:05 +02:00
Sebastian Hengst f46ebb0d94 Backed out changeset aebb0ceeb20a (bug 1351548) 2017-04-26 13:12:53 +02:00
Shing Lyu 96b400c04a Bug 1351548 - Remove reftest-stylo.lists. r=bholley
MozReview-Commit-ID: Gn0fbS4PZ7i
2017-04-26 18:21:52 +08:00
Shing Lyu dae014d9d5 Bug 1351548 - Add stylo-vs-gecko expectations to reftest.lists. r=bholley
MozReview-Commit-ID: GOUGBsd05cn
2017-04-26 18:21:43 +08:00
Manish Goregaokar d52216a79d Bug 1341648 - stylo: Include content rules from HTMLTableCellElement::WalkContentStyleRules ; r=bz
This also removes the TABLE_ATTRS_DIRTY optimization. Constructing nsMappedAttributes isn't really expensive and we do it all the time anyway.

MozReview-Commit-ID: 2krt1nFUzgl

--HG--
extra : rebase_source : 18d400aed6f427e5efc503b87b6ee2d9af74f3f5
2017-03-26 13:53:34 -07:00
Shing Lyu dd757845af Bug 1349130 - Fixed wrong reference files in reftest-stylo.list r=heycam
MozReview-Commit-ID: LRcPOPzVWFK

--HG--
extra : rebase_source : bb1fcb460c8e60aef420352f94d03046cf5bbe0c
2017-03-21 16:01:50 +08:00
Xidorn Quan 46aeed66ff Bug 1343166 - Update test expectation for servo/servo#15761.
--HG--
extra : rebase_source : 54155b656ce81f6d10454d95b122dcb738c4490f
2017-02-28 19:55:39 +11:00
Boris Zbarsky 24f6c20a9b Bug 1341728 test expectation adjustments, since servo now supports clip. r=bzbarsky
MozReview-Commit-ID: Hwnek9gkrMx
2017-02-24 12:20:52 -05:00
Boris Zbarsky a16891fa05 Reenable some more stylo reftests. No bug. r=bzbarsky
MozReview-Commit-ID: BbRlPC60tvt
2017-02-24 10:49:37 -05:00
Boris Zbarsky daecf0ebce Reenable various stylo reftests that set preferences. No bug. r=bzbarsky
MozReview-Commit-ID: F57DNYfpRA5
2017-02-23 18:17:59 -05:00
Boris Zbarsky a11bfd53bd Bug 1341988. Reenable a bunch of stylo reftests that were disabled for reasons that are not relevant anymore. r=bz
MozReview-Commit-ID: CLqLHexhBX3

--HG--
extra : rebase_source : 07dfb89d0651240362395494fdd7ee94363430b6
2017-02-23 02:09:57 -05:00
Cameron McCormack 01afae2b4b Bug 1334768 - stylo: Test expectation adjustments for 2017-01-30 merge.
MozReview-Commit-ID: 5Uua9zyS9Db
2017-01-30 21:27:43 +08:00
Cameron McCormack 9c4ea5685f Bug 1334768 - stylo: Back out 800030115d2e and 404506488cfb for being completely wrong due to bug 1334938.
MozReview-Commit-ID: 8CGTqmtlguT
2017-01-30 16:49:54 +08:00
Cameron McCormack 7805d4716e Bug 1334768 - stylo: Test expectation adjustments for 2017-01-29 merge.
MozReview-Commit-ID: FFmvs6SHIwW
2017-01-29 15:31:56 +08:00
Shing Lyu 39ec052547 Bug 1331860 - Update reftest-stylo expectations. r=heycam
--HG--
extra : rebase_source : 2c39a745949d3dfeb369f0e1efbf4befde8535c9
2017-01-12 10:37:36 +08:00
Shing Lyu 11a1d3e940 Bug 1328825 - Update reftest-stylo.list and expectations. r=heycam
MozReview-Commit-ID: AMwdk5wvM0F
2017-01-10 15:50:59 +08:00
Sebastian Hengst 5b7791c0ee Bug 1307332 - Remove B2G and Mulet annotations from reftest.list: layout/reftests/pagination. r=dholbert
MozReview-Commit-ID: JVv8mkNorPq
2016-10-09 09:51:31 +02:00
Manish Goregaokar 63e75ca24b Bug 1302993 - Mark more expectations for stylo tests, make reftest-stylo green; r=heycam
MozReview-Commit-ID: 9rKqASXgKZH

--HG--
extra : rebase_source : ea4d2cdc5623673827676e52d255c8b6fa34f7dd
2016-09-12 19:18:10 +05:30
Shing Lyu db11558e50 Bug 1288350 - Temporary reftest list for Stylo vs Gecko test r=heycam,manishearth
--HG--
extra : rebase_source : 4772418bd2813d4e79643a833eb09e47fe893d84
2016-09-05 11:45:39 +08:00