Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder linux-rel-css Build #808

Results:

Failed test compile__2

SourceStamp:

Projectservo/servo
Repositoryhttps://github.com/servo/servo
Branchtry
Revisionc8193d2a8522038a339ffba99dd8415e5167e736
Got Revisionc8193d2a8522038a339ffba99dd8415e5167e736
Changes1 change

BuildSlave:

servo-linux1

Reason:

The AnyBranchScheduler scheduler named 'servo-auto' triggered this build

Steps and Logfiles:

  1. git update ( 4 secs )
    1. - no logs -
  2. generic generic ( 0 secs )
    1. stdio
  3. shell 'pkill -x ...' ( 0 secs )
    1. stdio
  4. compile ran build --release --with-debug-assertions warnings ( 19 mins, 23 secs )
    1. warnings (1)
  5. test ran test-css --release --processes 16 failed ( 15 mins, 14 secs )
    1. - no logs -
  6. compile__1 ran build-cef --release --with-debug-assertions warnings ( 14 mins, 15 secs )
    1. stdio
    2. warnings (1)
  7. compile__2 ran build-geckolib --release failed ( 3 mins, 24 secs )
    1. warnings (5)
  8. test__1  
    1. - no logs -
    1. - no logs -
    1. - no logs -

Build Properties:

NameValueSource
branch try Build
builddir /home/servo/buildbot/slave/linux-rel-css slave
buildername linux-rel-css Builder
buildnumber 808 Build
codebase Build
got_revision c8193d2a8522038a339ffba99dd8415e5167e736 Git
project servo/servo Build
repository https://github.com/servo/servo Build
revision c8193d2a8522038a339ffba99dd8415e5167e736 Build
scheduler servo-auto Scheduler
slavename servo-linux1 BuildSlave
warnings-count 7 WarningCountingShellCommand
workdir /home/servo/buildbot/slave/linux-rel-css slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. bors-servo

Timing:

StartMon Nov 14 03:08:21 2016
EndMon Nov 14 04:00:44 2016
Elapsed52 mins, 22 secs

All Changes:

:

  1. Change #26260

    Category None
    Changed by bors-servo <lbergstrom+borsohnoyoudont@mozilla.com>
    Changed at Mon 14 Nov 2016 03:08:21
    Repository https://github.com/servo/servo
    Project servo/servo
    Branch try
    Revision c8193d2a8522038a339ffba99dd8415e5167e736

    Comments

    Auto merge of #14190 - Manishearth:cssom, r=<try>
    
    Immutable CSSOM
    
    This PR is intended to add basic support for all CSSOM interfaces, with the ability to index `document.styleSheets` and css rule lists, and serializing individual css rules. Handling individual interface methods for CSSRule subclasses can probably be done with easy/medium bugs.
    
    Mutation safety isn't dealt with here; if the css rule list is mutated the CSSOM will be in an inconsistent state. I intend to deal with this via zero sized tokens, see https://groups.google.com/forum/#!topic/mozilla.dev.servo/AnxJoVmtMXQ .  I'll handle that when I start making the CSSOM mutable. (Getting the immutable bit landed first opens this up for easy bugs)
    
    This doesn't really change style aside from adding an extra arc in the CSS rule list as discussed in the linked thread. So far this same design can be used by stylo as well when the time comes.
    
    f? @SimonSapin @emilio
    
    cc @upsuper
    
    Todo:
    
     - [x] Stubs for rest of the CSSRule subclasses
     - [ ] <s>ToCSS impls for CSSRules.</s> May make into easy bugs and stub out in this PR
     - [x] Cache CSSStyleSheet on the relevant node
    
    <!-- Reviewable:start -->
    ---
    This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/14190)
    <!-- Reviewable:end -->

    Changed files

    • components/script/dom/cssfontfacerule.rs
    • components/script/dom/cssgroupingrule.rs
    • components/script/dom/csskeyframesrule.rs
    • components/script/dom/cssmediarule.rs
    • components/script/dom/cssnamespacerule.rs
    • components/script/dom/cssrule.rs
    • components/script/dom/cssrulelist.rs
    • components/script/dom/cssstylerule.rs
    • components/script/dom/cssstylesheet.rs
    • components/script/dom/cssviewportrule.rs
    • components/script/dom/document.rs
    • components/script/dom/htmllinkelement.rs
    • components/script/dom/htmlmetaelement.rs
    • components/script/dom/htmlstyleelement.rs
    • components/script/dom/mod.rs
    • components/script/dom/node.rs
    • components/script/dom/stylesheet.rs
    • components/script/dom/stylesheetlist.rs
    • components/script/dom/webidls/CSSFontFaceRule.webidl
    • components/script/dom/webidls/CSSGroupingRule.webidl
    • components/script/dom/webidls/CSSKeyframesRule.webidl
    • components/script/dom/webidls/CSSMediaRule.webidl
    • components/script/dom/webidls/CSSNamespaceRule.webidl
    • components/script/dom/webidls/CSSRule.webidl
    • components/script/dom/webidls/CSSRuleList.webidl
    • components/script/dom/webidls/CSSStyleRule.webidl
    • components/script/dom/webidls/CSSStyleSheet.webidl
    • components/script/dom/webidls/CSSViewportRule.webidl
    • components/style/selector_matching.rs
    • components/style/stylesheets.rs
    • python/tidy/servo_tidy/tidy.py