Closed Bug 1530247 Opened 5 years ago Closed 5 years ago

Turn the Servo serialization property whitelist into a blacklist.

Categories

(Core :: CSS Parsing and Computation, enhancement, P3)

enhancement

Tracking

()

RESOLVED FIXED
mozilla67
Tracking Status
firefox67 --- fixed

People

(Reporter: emilio, Assigned: emilio)

References

(Blocks 1 open bug)

Details

Attachments

(1 file)

It's easier to see what remains that way.

Priority: -- → P3

It's easier to see what remains that way. Done with the following script:

execfile("layout/style/ServoCSSPropList.py")
for p in data:
  if p.type() != "longhand":
    continue
  if "GetCSNeedsLayoutFlush" in p.flags or "SerializedByServo" in p.flags or "Internal" in p.flags:
    continue
  print(p.name)

Ran like:

$ python print.py | sort

From the objdir.

Pushed by emilio@crisal.io:
https://hg.mozilla.org/integration/autoland/rev/c6ab8d3dd19a
Turn the Servo serialization property whitelist into a blacklist. r=boris
Pushed by emilio@crisal.io:
https://hg.mozilla.org/integration/autoland/rev/4cf427da8ee6
Turn the Servo serialization property whitelist into a blacklist. r=boris

This change alone should be fine, I don't understand why the other patch makes those tests time out, though I'll figure out.

Flags: needinfo?(emilio)
Status: NEW → RESOLVED
Closed: 5 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla67
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: