| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
real background
color is used.
Re-instate using the correct color for the text.
|
|
|
|
|
|
|
|
|
|
| |
Link coloring - doing the database lookup in a separate thread
Formatting
Whitespace changes
Re-ordered following review
|
|
|
|
|
|
|
|
|
|
| |
Pass the percentage of the current scroll from the UI
thread to webkit. The max scroll in X is computed as
renderer->scrollWidth() - renderer->clientWidth().
Companion fix is in framework/base
Fixes http://b/issue?id=2133049
|
|
|
|
|
| |
KURL::protocolIs no longer likes "javascript" and has a different method called
protocolIsJavaScript.
|
|
|
| |
Add the header in WebCoreJni.cpp so that LOGE will be print out.
|
|
|
|
| |
Change-Id: I4eb188f6b4826f394a08c72c71f920cc212b2653
|
|
|
|
|
|
|
|
|
|
|
| |
back to Java. This may happen if WebKit holds some reference
of the Document even when our Java side has been destroyed.
So when Document finally is deleted, the call back to Java
will have null nativeClass.
In the long run, we may need to add the check for all the
callback to Java.
Fix http://b/issue?id=2148023
|
|
|
|
|
|
|
|
|
|
| |
The webkit picture is rebuilt pretty often -- for performance,
the nav cache is built less often, only when the dom version changes.
Additionally, it's rebuilt when the focus changes or moves. Add
a condition so that it is also rebuilt if the focus selection changes.
fixes http://b/issue?id=2096746
|
|
|
|
|
|
| |
Following review comments
Following review comments
|
|
|
|
|
|
|
| |
We only care about the user gesture during a location change. Add the
m_userGesture field to our ResourceRequest and check the value in
canHandleRequest. This could be cleaner if WebCore passed around the
ResourceRequest rather than constructing a new one.
|
|
|
|
|
|
| |
Fix for http://b/issue?id=2136097
Change-Id: I8ca00498dd5a8d611bc0de5a941faaf596d9f76d
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The button is drawn using hardcoded margins that look fine
on a g1. The highres resource has different margins. Changing
the margins alone isn't enough; this also moves the button down
by two pixels to center it better.
Neither the hardcoded margin change nor the offset are
good long-term changes, but they allow us to get by for now.
Marked both with FIXME so we can address this issue by
reading the data directly out of the png, and diagnose why
the button is drawn too high.
fixes http://b/issue?id=2107422
|
|
|
|
| |
Change-Id: Ib3373af6ff127399d1d0846ba30a4275da5b3133
|
|
|
|
| |
Send up a boolean to indicate if the touch icon url is precomposed.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
In the "viewport" meta tag, you can specify "target-densityDpi".
If it is not specified, it uses the default, 160dpi as of today.
Then the 1.0 scale factor specified in the viewport tag means 100%
on G1 and 150% on Sholes. If you set "target-densityDpi" to
"device-dpi", then the 1.0 scale factor means 100% on both G1 and Sholes.
Implemented Safari's window.devicePixelRatio and css media query
device-pixel-ratio.
So if you use "device-dpi" and modify the css for font-size and image
src depending on window.devicePixelRatio, you can get a better page on
Sholes/Passion.
Here is a list of options for "target-densityDpi".
device-dpi: Use the device's native dpi as target dpi.
low-dpi: 120dpi
medium-dpi: 160dpi, which is also the default as of today
high-dpi: 240dpi
<number>: We take any number between 70 and 400 as a valid target dpi.
Fix http://b/issue?id=2071943
|
|
|
|
|
|
| |
calls
Change-Id: I7881e711af7ec905e5c120e8e2fd4b0b7ba5e840
|
|
|
|
| |
Change-Id: I333c2eebff22df1a56099fad7d8ec366627f4e22
|
|
|
|
| |
WebCore::MediaPlayerPrivate
|
| |
|
|
|
|
| |
Change-Id: I637275c9766202a4358ef25af01ee92c85c48e7f
|
|
|
|
|
|
|
|
|
|
|
| |
When a focused node is found while walking the DOM, the
CachedFrame tree doesn't have its parent pointer set.
Fix the focus index in the parent when fixing the parent pointer.
Also fix a debug statement so that it doesn't depend on
the focus parent.
Fixes http://b/issue?id=2048186
|
|
|
|
|
|
| |
Adjust the scheme to all lower case before looking up the
resource if the original was not already lower case.
This fixes http://b/2056348
|
| |
|
|
|
|
|
|
| |
See https://bugs.webkit.org/show_bug.cgi?id=28264.
Change-Id: I30900239108ea699f194fceb30626f41c928c08e
|
|
|
|
|
|
| |
This fixes bug http://b/issue?id=2054431.
Change-Id: I44b752b0c7fb4529027018c99dd945279b594b89
|
|
|
|
| |
nativeAddJavaScriptInterface. When 0, we add the iface to the top level frame.
|
|
|
|
| |
fixes http://b/issue?id=2048180
|
|\
| |
| |
| |
| | |
* changes:
Brings Mock Geolocation service up to date with latest submission to WebKit.
|
| |
| |
| |
| | |
See https://bugs.webkit.org/show_bug.cgi?id=28264.
|
|/
|
|
| |
Fix http://b/issue?id=2086818
|
|
|
|
|
|
|
|
|
| |
The browser directly references the names of the asset
files it uses to draw buttons, checkboxes, and radio
buttons. Update the names to correspond to the latest
assets. Fixes issue http://b/issue?id=2086818
Change-Id: Iac8d8762252707e21a88e65ba44de24a5fa2f869
|
|
|
|
|
|
|
|
|
| |
It crashes when you leave the site.
frame->view() returns m_view.get(). So we don't want to call adoptRef which
will cause a deref.
I verified that when you leave the page, the new widget is removed.
|
|
|
|
|
|
|
| |
(companion change in framework/base)
Add a boolean parameter to WebViewCore.java nativeSizeSize().
If set, only layout if the width has also changed.
If clear, layout if the height alone has changed.
|
| |
|
|\
| |
| |
| |
| |
| | |
* changes:
Use v8::V8::LowMemoryNotification() instead of the non-really-existibg v8::V8::CollectAllGarbage()
Update V8 to 2725 to pick up Thread Termination and Low Memory Notification APIs
|
| |
| |
| |
| | |
v8::V8::CollectAllGarbage()
|
|\ \
| | |
| | |
| | |
| | | |
* changes:
Adds a method to allow Geolocation permissions for an origin.
|
| | | |
|
| |/
|/|
| |
| |
| |
| |
| |
| |
| |
| | |
Zooming in to yahoo.com fails sometimes if the block of text has
a large bitmap on the left. This change prevents the bitmap from
being seen as a part of the text paragraph.
Also, cleaned up the debugging statements.
Fixes http://b/issue?id=2066236
|
| |
| |
| |
| |
| |
| | |
that figure can be used to establish an initial quota for origins.
Change-Id:Ife96fb4fecee1974a36ceb1432a75f3ef164084b
|
|\ \
| | |
| | |
| | |
| | | |
* changes:
fix address detection when the city and state are both valid states
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This fixes detecting "4 E. 86th St New York, NY"
The old logic found 'New York' and assumed that St was the city
name. Since 86th is not a valid street suffix, the test failed.
The new logic looks for a valid street suffix instead of skipping
'city'. If it finds one, and the subsequent street suffix test
fails, it resets to search again for a valid state name while
retaining the starting point for the address (the street number).
Fixing this exposed a bug in the zip code detection code
where it dropped the first character of the actual state name.
|
|/ / |
|
|/
|
|
| |
Change-Id: I634ae9c2e18e03c95dff435679f547d37c6f430e
|
| |
|
|
|
|
| |
This fixes bug http://b/issue?id=2054365.
|
| |
|
|
|
|
|
|
| |
setting.
This fixes bug http://b/issue?id=2067559.
|
|\ |
|
| |\
| | |
| | |
| | |
| | | |
* changes:
Need to notify Java side when viewport tag is parsed.
|