|
1 2010-08-31 Benjamin Poulain <benjamin.poulain@nokia.com> |
|
2 |
|
3 Reviewed by Kenneth Rohde Christiansen. |
|
4 |
|
5 JSC TimeoutChecker::didTimeOut overflows on ARM |
|
6 https://bugs.webkit.org/show_bug.cgi?id=38538 |
|
7 |
|
8 Make getCPUTime() return values relative to the first call. |
|
9 The previous implementation relied on simply on currentTime(), which |
|
10 return a time since epoch and not a time since the thread started. This |
|
11 made the return value of getCPUTime() overflow on 32 bits. |
|
12 |
|
13 * runtime/TimeoutChecker.cpp: |
|
14 (JSC::getCPUTime): |
|
15 |
|
16 2010-08-27 Kimmo Kinnunen <kimmo.t.kinnunen@nokia.com> |
|
17 |
|
18 Reviewed by Kenneth Rohde Christiansen. |
|
19 |
|
20 [Qt] NPAPI Plugin metadata should be cached, and loading a plugin should not require loading every plugin |
|
21 https://bugs.webkit.org/show_bug.cgi?id=43179 |
|
22 |
|
23 Add ENABLE_NETSCAPE_PLUGIN_METADATA_CACHE flag to enable persistent |
|
24 NPAPI Plugin Cache. The flag is enabled by default. |
|
25 |
|
26 * wtf/Platform.h: Add ENABLE_NETSCAPE_PLUGIN_METADATA_CACHE |
|
27 |
|
28 2010-08-12 Gabor Loki <loki@webkit.org> |
|
29 |
|
30 Reviewed by Simon Hausmann. |
|
31 |
|
32 The scratch register should be saved in YARR with ARM JIT |
|
33 https://bugs.webkit.org/show_bug.cgi?id=43910 |
|
34 |
|
35 Reported by Jocelyn Turcotte. |
|
36 |
|
37 * yarr/RegexJIT.cpp: |
|
38 (JSC::Yarr::RegexGenerator::generateEnter): |
|
39 (JSC::Yarr::RegexGenerator::generateReturn): |
|
40 |
|
41 2010-07-30 Luiz Agostini <luiz.agostini@openbossa.org> |
|
42 |
|
43 Reviewed by Simon Fraser. |
|
44 |
|
45 Enabling view modes to all platforms |
|
46 https://bugs.webkit.org/show_bug.cgi?id=37505 |
|
47 |
|
48 Removing ENABLE_WIDGETS_10_SUPPORT flag. |
|
49 |
|
50 As view mode media feature is not part of widget 1.0 specification |
|
51 any more the ENABLE_WIDGETS_10_SUPPORT flag may be removed. The only use |
|
52 of this flag was related to view mode media feature implementation in Qt. |
|
53 |
|
54 * wtf/Platform.h: |
|
55 |
1 2009-10-30 Tor Arne Vestbø <tor.arne.vestbo@nokia.com> |
56 2009-10-30 Tor Arne Vestbø <tor.arne.vestbo@nokia.com> |
2 |
57 |
3 Reviewed by Kenneth Rohde Christiansen. |
58 Reviewed by Kenneth Rohde Christiansen. |
4 |
59 |
5 [Qt] Use the default timeout interval for JS as the HTML tokenizer delay for setHtml() |
60 [Qt] Use the default timeout interval for JS as the HTML tokenizer delay for setHtml() |