aboutsummaryrefslogtreecommitdiffstats
path: root/components
Commit message (Collapse)AuthorAgeFilesLines
* Give userscripts its own module; panic on broken pathsManish Goregaokar2015-04-013-44/+58
|
* Allow passing a path to --userscriptsManish Goregaokar2015-03-282-29/+37
|
* auto merge of #5413 : Ms2ger/servo/percent-encoding, r=jdmbors-servo2015-03-271-7/+1
|\
| * Simplify URLSearchParams::serialize's percent-encoding.Ms2ger2015-03-271-7/+1
| |
* | auto merge of #5401 : frewsxcv/servo/cleanup-element, r=Ms2gerbors-servo2015-03-271-107/+74
|\ \
| * | Cleanup and modernize script::dom::elementCorey Farwell2015-03-261-107/+74
| | |
* | | Notify devtools about new worker globalsThiago Pontes2015-03-2710-14/+117
| |/ |/|
* | auto merge of #5389 : Manishearth/servo/trace_raw, r=jdmbors-servo2015-03-261-0/+20
|\ \
| * | blanket impl jstraceable on *TManish Goregaokar2015-03-261-0/+20
| | |
* | | auto merge of #5392 : leavengood/servo/fix-alphabetic-key-codes, r=jdmbors-servo2015-03-261-26/+26
|\ \ \
| * | | Fix #5374: Use correct codes for alphabetic charsRyan Leavengood2015-03-261-26/+26
| | | |
* | | | auto merge of #5390 : leavengood/servo/backquote-handling, r=jdmbors-servo2015-03-261-2/+3
|\ \ \ \
| * | | | Fix #5367: Map GraveAccent to BackquoteRyan Leavengood2015-03-261-2/+3
| | | | |
* | | | | auto merge of #5383 : Ms2ger/servo/update-js, r=jdmbors-servo2015-03-261-4/+4
|\ \ \ \ \ | |_|_|_|/ |/| | | |
| * | | | Update js.Ms2ger2015-03-261-4/+4
| | | | |
* | | | | auto merge of #5388 : Ms2ger/servo/net-tests, r=jdmbors-servo2015-03-262-10/+5
|\ \ \ \ \ | |_|_|/ / |/| | | |
| * | | | Stop using old_io in net tests.Ms2ger2015-03-262-10/+5
| | |/ / | |/| |
* | | | auto merge of #5387 : Manishearth/servo/macro_path, r=Ms2gerbors-servo2015-03-262-5/+5
|\ \ \ \ | |/ / / |/| | / | | |/ | |/|
| * | make no_jsmanaged_fields not require importsManish Goregaokar2015-03-262-5/+5
| | |
* | | auto merge of #5381 : Ms2ger/servo/old_path, r=jdmbors-servo2015-03-265-8/+5
|\ \ \
| * | | Stop using old_path in net.Ms2ger2015-03-263-4/+4
| | | |
| * | | Stop using old_path in compositing.Ms2ger2015-03-262-4/+1
| | |/ | |/|
* | | auto merge of #5380 : fabricedesre/servo/no-unused-import, r=Ms2gerbors-servo2015-03-262-2/+2
|\ \ \
| * | | Suppress unused import warningsFabrice Desré2015-03-252-2/+2
| | | |
* | | | auto merge of #5375 : frewsxcv/servo/xhr-docs, r=jdmbors-servo2015-03-261-1/+42
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | Also adding some newlines for visual separation between functions/methods
| * | | Add comments linking XHR code to XHR specificationCorey Farwell2015-03-251-1/+42
| | | | | | | | | | | | | | | | | | | | Also adding some newlines for visual separation between functions/methods
* | | | auto merge of #5377 : frewsxcv/servo/rm-node-iter, r=jdmbors-servo2015-03-251-83/+0
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | | | | | | | | | Was introduced in 7aee1cae84704b885988a5985a7604747125ec1e I noticed it isn't actively in use, so unless there's some bigger reason why it exists, it could probably be removed
| * | | Remove unused script::dom::node::NodeIteratorCorey Farwell2015-03-251-83/+0
| |/ / | | | | | | | | | | | | | | | | | | Was introduced in 7aee1cae84704b885988a5985a7604747125ec1e I noticed it isn't actively in use, so unless there's some bigger reason why it exists, it could probably be removed
* | | auto merge of #5348 : nnethercote/servo/profiler-renaming, r=jdmbors-servo2015-03-2518-324/+315
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ``` ------------------------------------------------------------------------ BEFORE AFTER ------------------------------------------------------------------------ util::memory util::mem - heap_size_of - heap_size_of (unchanged) - SizeOf - HeapSizeOf - size_of_excluding_self - heap_size_of_children prof::mem prof::mem - MemoryProfilerChan - ProfilerChan - MemoryReport - Report - MemoryReportsChan - ReportsChan - MemoryReporter - Reporter - MemoryProfilerMsg - ProfilerMsg - {R,UnR}egisterMemoryReporter - {R,UnR}egisterReporter - MemoryProfiler - Prof - ReportsForest - ReportsForest (unchanged) - ReportsTree - ReportsTree (unchanged) - SystemMemoryReporter - SystemReporter prof::time prof::time - TimeProfilerChan - ProfilerChan - TimerMetadata - TimerMetadata (unchanged) - Formatable - Formattable [spelling!] - TimeProfilerMsg - ProfilerMsg - TimeProfilerCategory - ProfilerCategory - TimeProfilerBuckets - ProfilerBuckets - TimeProfiler - Profiler - TimerMetadataFrameType - TimerMetadataFrameType (unchanged) - TimerMetadataReflowType - TimerMetadataReflowType (unchanged) - ProfilerMetadata - ProfilerMetadata (unchanged) ``` In a few places both prof::time and prof::mem are used, and so module-qualification is needed to avoid overlap, e.g. time::Profiler and mem::Profiler. Likewise with std::mem and prof::mem. This is not a big deal.
| * | Rename lots of profiling-related things.Nicholas Nethercote2015-03-2518-324/+315
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ------------------------------------------------------------------------ BEFORE AFTER ------------------------------------------------------------------------ util::memory util::mem - heap_size_of - heap_size_of (unchanged) - SizeOf - HeapSizeOf - size_of_excluding_self - heap_size_of_children prof::mem prof::mem - MemoryProfilerChan - ProfilerChan - MemoryReport - Report - MemoryReportsChan - ReportsChan - MemoryReporter - Reporter - MemoryProfilerMsg - ProfilerMsg - {R,UnR}egisterMemoryReporter - {R,UnR}egisterReporter - MemoryProfiler - Prof - ReportsForest - ReportsForest (unchanged) - ReportsTree - ReportsTree (unchanged) - SystemMemoryReporter - SystemReporter prof::time prof::time - TimeProfilerChan - ProfilerChan - TimerMetadata - TimerMetadata (unchanged) - Formatable - Formattable [spelling!] - TimeProfilerMsg - ProfilerMsg - TimeProfilerCategory - ProfilerCategory - TimeProfilerBuckets - ProfilerBuckets - TimeProfiler - Profiler - TimerMetadataFrameType - TimerMetadataFrameType (unchanged) - TimerMetadataReflowType - TimerMetadataReflowType (unchanged) - ProfilerMetadata - ProfilerMetadata (unchanged) In a few places both prof::time and prof::mem are used, and so module-qualification is needed to avoid overlap, e.g. time::Profiler and mem::Profiler. Likewise with std::mem and prof::mem. This is not a big deal.
* | | auto merge of #5359 : aweinstock314/servo/moz-events, r=jdmbors-servo2015-03-257-49/+102
|\ \ \ | | | | | | | | | | | | | | | | | | | | Addresses #5352. This is based on https://github.com/glennw/servo/tree/moz-events
| * | | Replace (String, Option<String>) with MozBrowserEvent in uses of ↵Avi Weinstock2015-03-257-49/+102
| | | | | | | | | | | | | | | | MozBrowserEventMsg.
* | | | auto merge of #5372 : frewsxcv/servo/xhr-enum-prefix, r=jdmbors-servo2015-03-251-8/+8
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | | | | | It was originally titled XHRDone to prevent conflicts with other variants called Done. This was done before enum namespacing landed, but now that it has, the prefixing is not necessary.
| * | | Remove enum variant prefix in XMLHttpRequestStateCorey Farwell2015-03-251-8/+8
| | |/ | |/| | | | | | | | | | | | | It was originally titled XHRDone to prevent conflicts with other variants called Done. This was done before enum namespacing landed, but now that it has, the prefixing is not necessary.
* | | auto merge of #5362 : Ms2ger/servo/layout-old-path, r=jdmbors-servo2015-03-252-3/+1
|\ \ \ | |/ / |/| |
| * | Remove old_path usage from layout.Ms2ger2015-03-252-3/+1
| | |
* | | auto merge of #5360 : snf/servo/main_thread_runnable, r=jdmbors-servo2015-03-251-0/+8
|\ \ \ | |_|/ |/| |
| * | implementing MainThreadRunnable in ScriptTasksnf2015-03-251-0/+8
| | |
* | | Add mozbrowser events for location + title change.Glenn Watson2015-03-265-23/+82
|/ /
* | auto merge of #5358 : Ms2ger/servo/android-path-ext, r=jdmbors-servo2015-03-252-2/+3
|\ \ | |/ |/|
| * Fix warnings related to std::fs::PathExt on Android.Ms2ger2015-03-252-2/+3
| |
* | auto merge of #5356 : servo/servo/devtools, r=jdmbors-servo2015-03-258-38/+38
|\ \ | |/ |/|
| * Move devtools to std::net (fixes #5355).Ms2ger2015-03-258-38/+38
| |
* | auto merge of #5302 : mmatyas/servo/canvas_stroke, r=jdmbors-servo2015-03-254-2/+21
|\ \ | | | | | | | | | This is the servo side patch of servo/rust-azure#149.
| * | Canvas: added stroke() support.Mátyás Mustoha2015-03-254-2/+21
| | |
* | | Pass a slice to write_pixels.Ms2ger2015-03-251-2/+2
| | |
* | | Stop using the deprecated range function in canvas_paint_task.Ms2ger2015-03-251-1/+1
| | |
* | | Fix indentation in canvas_paint_task.Ms2ger2015-03-251-13/+13
| |/ |/|
* | auto merge of #5346 : saneyuki/servo/binding, r=jdmbors-servo2015-03-2512-98/+373
|\ \ | | | | | | | | | | | | - Fix #707 - Take over from #5106
| * | Add guards to almost CanvasRenderingContext2D methods according to the spec.Tetsuharu OHZEKI2015-03-251-1/+89
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | http://www.w3.org/html/wg/drafts/2dcontext/html5_canvas_CR/ says "Except where otherwise specified, for the 2D context interface, any method call with a numeric argument whose value is infinite or a NaN value must be ignored." We might define the annotation to generate this behavior in glue code. However, at now, I use this workaround way.