| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 { | 85 { |
| 86 // RenderRubyText manages its own :before and :after content | 86 // RenderRubyText manages its own :before and :after content |
| 87 // and is not handled by its anonymous wrappers RenderRubyRun | 87 // and is not handled by its anonymous wrappers RenderRubyRun |
| 88 // and RenderRuby. This contrasts with other ruby children, which | 88 // and RenderRuby. This contrasts with other ruby children, which |
| 89 // are enclosed in RenderRubyBase and hence they are able to | 89 // are enclosed in RenderRubyBase and hence they are able to |
| 90 // update their :before, :after content (since RenderRubyBase | 90 // update their :before, :after content (since RenderRubyBase |
| 91 // is not a anonymous wrapper). | 91 // is not a anonymous wrapper). |
| 92 return children()->updateBeforeAfterContent(this, pseudoId); | 92 return children()->updateBeforeAfterContent(this, pseudoId); |
| 93 } | 93 } |
| 94 | 94 |
| 95 bool RenderRubyText::avoidsFloats() const |
| 96 { |
| 97 return true; |
| 98 } |
| 99 |
| 95 } // namespace WebCore | 100 } // namespace WebCore |
| OLD | NEW |