TPEGFX/2015-10-29

From MozillaWiki
Jump to: navigation, search

Weekly Report

Boris Chiou

  • bug 1108055 - Implement ComputedTiming for Web Animation API
    • all patches: r+
  • ACMMM2015

Jeremy Chen

Jerry Shih

  • bug 1204069 - youtube video problem
    • debug, pending
    • it might be a layout problem.
  • bug 1166173 - off-main-painting
    • WIP
    • update ipdl code gen for raw message passing.
  • impl of move
 Message& Message::operator=(Message&& other)
 {
   .....
   std::swap(header()->source_event_id, other.header()->source_event_id);
   std::swap(header()->parent_task_id, other.header()->parent_task_id);
   std::swap(header()->source_event_type, other.header()->source_event_type);
   return *this;	
 }
 c++98:
 template <class T> void swap ( T& a, T& b )
 {
   T c(a); a=b; b=c;
 }
 c++11:
 template <class T> void swap (T& a, T& b)
 {
   T c(std::move(a)); a=std::move(b); b=std::move(c);
 }

Morris Tseng

  • bug 1215438 - StructuedClone of ImageBitmap is actually transfer underlying Image which is not right.
    • r?
  • bug 1215005 - Allow SourceSurfaces to be moved between threads
    • r?

Tingyu Lin

  • bug 1216857 - [TextSelection] selected text is covered by selection bubble after switching from portrait mode to landscape mode.
    • r
  • bug 1217297 - Warning: unknown warning group '-Wreserved-id-macro'
    • file
  • bug 1217757 - Support vertical writing mode for AccessibleCaret
    • file
  • bug 591737 - Support for HTML5's <details> and <summary>
    • WIP
    • Rewrite those old patches.

Vincent Liu

  • bug 801176 - Support canvas 2D API from workers (with transferables for bg image rendering/processing, etc.)
    • sr- from smaug
    • CSSParser on worker.
  • bug 1186826 - Implement an abstraction object for NativeWindow to hide hardware dependent operations
    • WIP

CJ

  • bug 686281 - CSS mask image
    • Action
      • Github
      • Figure out nsComputedDOMStyle. Do we need DoGetMaskRepeat??
      • Figure out CSS_PROPERTY_CREATES_STACKING_CONTEXT
    • Status
      • mask-image: gradient/ image. (80%). SVG
      • mask-repeat: (100%)
      • mask-position: (100%)
      • mask-clip: (100%)
      • mask-origin: (100%)
      • mask-size: (100%)
      • mask: shorthand. (10%)
      • Compute dirty region. (100%)
      • Integrate mask image and background image. (50%)
      • mask-composite: (100%)
      • mask-mode: (0%)
      • reftest: 0%

Team

  • Managers meeting minutes

Rule of Thumb

Status code:

  • OOAD: In analysis or design phase.
  • WIP: working on WIP patch.
  • feedback(f): feedback a patch
  • feedback?(f?): WIP is ready for feedback grant.
  • feedback+(f+): Get positive feedback.
  • feedback-(f-): Get negative feedback.
  • review(r): review a patch.
  • review?(r?): patch is under review
  • review+(r+): get review+ and ready to check-in
  • review-(r-): get negative review feedback. Fix problems and switch back to r? again.
  • land: patch check in.
  • debug: Figure out the root cause of a bug/ try to repro that bug, etc...
  • file: file a bug
  • PTO: take personal leave
  • interview(I)
  • study: Spend time on domain knowledge study, such as multimedia transport technology, compress format, real-time rendering.
  • presentation
    • Write a personal blog, which is relative to work, such as articles on MozTech, or what you experience in a work week.
    • WIKI/ MDN article writing.
    • If you write a technical blog or anything relative to work, it's welcome to share it on weekly report.
    • Do a presentation of technical topics

Status code combination rule
Combine status code with "|". For example

** OOAD|WIP

Which means you work on both OOAD and WIP in the last week.

land status code
If your patch is target for specific branch, instead of central, postfix branch version. For exp

** land(1.4)